Lock in $30 Savings on PRO—Offer Ends Soon! ⏳
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Ember.js
Search
xamenrax
April 04, 2013
Programming
2
270
Ember.js
test presentation
xamenrax
April 04, 2013
Tweet
Share
Other Decks in Programming
See All in Programming
Patterns of Patterns
denyspoltorak
0
310
AIコーディングエージェント(skywork)
kondai24
0
200
Navigating Dependency Injection with Metro
l2hyunwoo
1
180
ZJIT: The Ruby 4 JIT Compiler / Ruby Release 30th Anniversary Party
k0kubun
0
270
Pythonではじめるオープンデータ分析〜書籍の紹介と書籍で紹介しきれなかった事例の紹介〜
welliving
2
570
[AtCoder Conference 2025] LLMを使った業務AHCの上⼿な解き⽅
terryu16
5
710
生成AI時代を勝ち抜くエンジニア組織マネジメント
coconala_engineer
0
650
マスタデータ問題、マイクロサービスでどう解くか
kts
0
120
Deno Tunnel を使ってみた話
kamekyame
0
240
実はマルチモーダルだった。ブラウザの組み込みAI🧠でWebの未来を感じてみよう #jsfes #gemini
n0bisuke2
3
1.3k
AIコーディングエージェント(NotebookLM)
kondai24
0
220
20251212 AI 時代的 Legacy Code 營救術 2025 WebConf
mouson
0
210
Featured
See All Featured
Paper Plane
katiecoart
PRO
0
44k
Accessibility Awareness
sabderemane
0
24
Future Trends and Review - Lecture 12 - Web Technologies (1019888BNR)
signer
PRO
0
3.1k
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
0
110
The Hidden Cost of Media on the Web [PixelPalooza 2025]
tammyeverts
2
120
Jamie Indigo - Trashchat’s Guide to Black Boxes: Technical SEO Tactics for LLMs
techseoconnect
PRO
0
31
The Cult of Friendly URLs
andyhume
79
6.7k
4 Signs Your Business is Dying
shpigford
186
22k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
16k
From Legacy to Launchpad: Building Startup-Ready Communities
dugsong
0
110
SEO for Brand Visibility & Recognition
aleyda
0
4.1k
GitHub's CSS Performance
jonrohan
1032
470k
Transcript
None
• ◦ ◦ ◦ ◦ • ◦ ◦ ◦ ◦
• • • • •
App.Cat = Ember.Object.extend({ name: 'null', meow: function(thing) { alert(thing); }
}); App.Cat = DS.Model.extend({ name: DS.attr('string'), isSelected: DS.attr('boolean', {defaultValue: false}) }); App.Store = DS.Store.extend({ revision: 12 });
• • • •
App.Router.map(function() { this.resource('cats', function() { this.recourse('cat', { path: ':cat_id' };
}); }); App.CatsRoute = Ember.Route.extend({ model: function() { return App.Cat.find(); } }); App.CatRoute = Ember.Route.extend({ model: function(params) { return App.Cat.find(params.cat_id); } });
С • •
• •
None
•