quickstart-code-sample icon indicating copy to clipboard operation
quickstart-code-sample copied to clipboard

Code samples from the quickstart guide

Results 10 quickstart-code-sample issues
Sort by recently updated
recently updated
newest added

``` javascript On http://guides.emberjs.com/v1.10.0/getting-started/obtaining-emberjs-and-dependencies/ it says to add: on the next page http://guides.emberjs.com/v1.10.0/getting-started/adding-a-route-and-template/ if you click 'Changes in this step in diff format' the version numbers for jquery and handlebars...

The code sample give here is not working

Referenced here https://github.com/emberjs/website/pull/1367#issuecomment-37571896

[jquery-1.10.2.min.map](http://code.jquery.com/jquery-1.10.2.min.map) is required in the js/lib folder On step 4 of the tutorial, [Obtaining Ember.js and Dependencies](http://emberjs.com/guides/getting-started/obtaining-emberjs-and-dependencies/), an error is thrown if this file isn't present. n.b. this is an...

The docs have been updated to reflect this (see https://github.com/emberjs/website/pull/882) but the example code still uses the old version. Specifically, within the todos controller the `clearCompleted` action and the `completed`...

I tried copying this code from the ember docs. Everything works fine when I use the FixtureAdapter, but when I change to the LSAdapter and try to mark a todo...

When I try to delete a Todo by emptying the field and pressing enter or switching focus, I'm getting a "0 todos left" on the todo count ![screen shot 2013-11-27...

On todos_controller.js, specifically in the allAreDone computed property there is: ``` js return !!this.get('length') && this.everyProperty('isCompleted', true); ``` i think it may be: ``` js return this.get('length') && this.everyBy('isCompleted', true);...

I've tried following along with the guide (http://emberjs.com/guides/getting-started/) - and kept getting this error. I also downloaded the files from GitHub and got the same thing. This is with downloading...

Issue was found in: http://jsbin.com/aqexej/3/edit Steps to reproduce issue: 1. Add 2 items to the todo list. 2. 'Mark all as complete'. 3. Add another item to the todo. 4....