Kasper Søfren

Results 5 comments of Kasper Søfren

To be honest, the `page-changed` should not fire during the creation of the pagination DOM elements. Currently, when the paginator is constructed, the event fires. A common scenario is that...

Agreed. Perhaps introduce a new annotation to determine which columns should be exposed via the API, so that we don't accidentally blurb out sensitive information (like passwords). For instance `@ApiExposable`...

I have the same experiences. Atom freezes for 2 - 15 seconds. Occurrences, in my case, are much more sporadic, though. I have yet to establish a concrete pattern, but...

@dfilatov To allow for private variables (or "scope-only" variables) inside the functions. Example: ``` javascript exports.testInheritedFunctionsWithPrivateVariables = function(test) { test.expect(2); var A = inherit(function(){ var _privateVariable = 1; this.method =...

> You still can do this with __constructor property, isn't it? The variable is only available within the constructor's function scope, then. What I'm asking for is private variables, which...