Mathias Malmqvist

Results 6 issues of Mathias Malmqvist

The code below should print both DOWN and UP, but only prints UP. ``` hotkeys.bindTo($scope).add({ combo: 'a', action: 'keydown', callback: function() { console.log("DOWN"); }, combo: 'a', action: 'keyup', callback: function()...

The documentation says there's a showRotate option, but in the LightboxConfig code it's called showRotation. However setting this option to true does nothing, because the LightboxComponent rely on the non-existent...

The code below works with caolan/async v3.2.0 and with suguru03/neo-async v1.8.2 and outputs ``` Arguments passed from 'each()' callback: [Arguments] { '0': [Function] } Arguments passed from 'waterfall()' callback: [Arguments]...

I have a user.js schema file that result in a db.User model. Now I want to remove a field called 'email_verified' from all User documents, like this: ``` javascript db.User.update(...

At the moment I've added my pre and path schema extensions in the implementation of a doInit() static function that I call for each document type on node-startup. Is this...

enhancement

Shouldn't the browser page reload when I edit and save any of the files in the app folder, as is the case when using connect::livereload? As far as I can...