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
| M.Select = Em.Select.extend({ | |
| value: Ember.computed(function(key, value){ | |
| var content = this.get('content'), | |
| selection = this.get('selection'), | |
| self = this, | |
| optionValuePath = this.get('optionValuePath'); | |
| if ( selection ) { | |
| this.setPath('bindingContext.type', selection.type) | |
| } |
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 |
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
| {{content.my_var}} | |
| {{#each content.blah}} | |
| ... stuff hear that is part of blah | |
| {{content.my_var}} | |
| {{/each}} |
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
| [2011-10-14 20:42:21] ERROR NoMethodError: You have a nil object when you didn't expect it! | |
| You might have expected an instance of Array. | |
| The error occurred while evaluating nil.split | |
| /Users/cory/.rvm/gems/ruby-1.9.2-p290/gems/rack-1.3.4/lib/rack/handler/webrick.rb:68:in `block in service' | |
| /Users/cory/.rvm/gems/ruby-1.9.2-p290/gems/rack-1.3.4/lib/rack/utils.rb:356:in `block in each' | |
| /Users/cory/.rvm/gems/ruby-1.9.2-p290/gems/rack-1.3.4/lib/rack/utils.rb:355:in `each' | |
| /Users/cory/.rvm/gems/ruby-1.9.2-p290/gems/rack-1.3.4/lib/rack/utils.rb:355:in `each' | |
| /Users/cory/.rvm/gems/ruby-1.9.2-p290/gems/rack-1.3.4/lib/rack/handler/webrick.rb:62:in `service' | |
| /Users/cory/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service' | |
| /Users/cory/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run' |
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
| <!-- Application ERB --> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Diets</title> | |
| <%= stylesheet_link_tag "application" %> | |
| <%= csrf_meta_tags %> | |
| </head> | |
| <body> | |
| <%= yield %> |
NewerOlder