Ember.js is a JavaScript web application framework based on the model-view-controller (MVC) software architectural pattern.

learn more… | top users | synonyms

3
votes
0answers
206 views

A nicer way of remapping the model attribute name with ember-data

The backend supplies an attribute called content which clashes with the controller content, so I'm remapping it: ...
2
votes
0answers
36 views

Ember.js blog app architecture

I decided to create simple blog app by using Ember.js which should has the following interface For this purpose I created ...
2
votes
0answers
1k views

Ember.js file upload code

I am a newbie and tried to find the laziest way to do a file upload using EmberJS, jQuery and formdata (IE10+). The code might look stupid, but it worked. Can you please take a look and give some ...
1
vote
1answer
99 views

Ember App - Initial State

I'm learning Ember, and I've come across a situation where I haven't been able to find a pattern online. My application's main route includes a list of "stories" (think scrum). However, this list ...
1
vote
0answers
54 views

Overriding global click behavior

I have links like <a href="http://www.example.org" target="_system">foo</a> that are supposed to open in Safari (from phonegap), so globally I did this: ...