app/assets/javascripts/seed_tray.js.coffee.erb in seed_tray-0.1.1 vs app/assets/javascripts/seed_tray.js.coffee.erb in seed_tray-0.1.2
- old
+ new
@@ -16,10 +16,15 @@
delegate_ready: =>
controller = $("[data-controller]").data("controller")
action = $("[data-action").data("action")
- if @root[controller] && @root[controller][action]
+ if @root[controller]
+ @root[controller].ready()
+ else
+ console.error "Couldn't find #{@root.name}.#{controller}.ready()."
+
+ if @root[controller][action]
@root[controller][action].ready()
console.info "Executed #{@root.name}.#{controller}.#{action}.ready()."
else
console.error "Couldn't find #{@root.name}.#{controller}.#{action}.ready()."