Created
December 20, 2011 21:11
-
-
Save cloke/1503292 to your computer and use it in GitHub Desktop.
Ember didInsertElement example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| App.MasterView = Em.View.create | |
| templateName: 'app/~templates/master_page' | |
| SidebarView: Em.View.extend | |
| viewName: 'Sidebar' | |
| templateName: 'app/~templates/sidebar' | |
| contentBinding: 'App.MyController.content' | |
| didInsertElement: -> | |
| #setup draggable, sortable, blahbable here |
joewest
commented
Dec 20, 2011
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment