Eelke Feenstra

Results 8 issues of Eelke Feenstra

### Describe your environment * Operating System version: Mac OS 10.13.3 * Ember CLI version: 2.14.2 * Ember CLI G Maps version: 0.5.14 * Google Maps JavaScript API 3.31 ###...

question

In dynamically generated forms (ie. from Model or other data) this allows the inputComponent’s options to be dynamic too.

Whenever the parser runs into [optional chaning](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining), it throws a `SyntaxError: Unexpected token .`

I have a project, using ember-simple-auth 6.0.0, and ember 5.3. My application session store is very basic: ```javascript import CookieStore from 'ember-simple-auth/session-stores/cookie'; export default class ApplicationSessionStore extends CookieStore { sameSite...

I've had a long issue today figuring out why AppApi would not work on my local set-up: an older site that used to work with the old RestApi module. It...

Hi! I noticed jagged lines when masking otherwise smoothly rendered content. This addition fixes that. Signed-off-by: Eelke Feenstra [email protected]

For OS X, and likely also for Linux: ``` ofAddListener(ofEvents().mouseMoved, this, &ofxSurface::_mouseMoved); ofAddListener(ofEvents().mousePressed, this, &ofxSurface::_mousePressed); ofAddListener(ofEvents().mouseDragged, this, &ofxSurface::_mouseDragged); ofAddListener(ofEvents().mouseReleased, this, &ofxSurface::_mouseReleased); ofAddListener(ofEvents().keyPressed, this, &ofxSurface::_keyPressed); ``` should be ``` ofAddListener(ofEvents.mouseMoved, this,...

I noticed `truncate` did not work correctly after updating an older project, and after poking around I found the culprit. In [a couple of locations](https://github.com/search?q=repo%3Aromulomachado%2Fember-cli-string-helpers%20string.string&type=code) the code checks if a...