Many fixes for Ember 1.9.0

This commit is contained in:
Robin Ward
2014-12-10 11:34:00 -05:00
parent 61101736cb
commit 5659b93c71
29 changed files with 9429 additions and 8052 deletions

View File

@ -0,0 +1,16 @@
module Ember
module Handlebars
class Template < Tilt::Template
# Wrap in an IIFE in development mode to get the correct filename
def compile_ember_handlebars(string)
if ::Rails.env.development?
"(function() { try { return Ember.Handlebars.compile(#{indent(string).inspect}); } catch(err) { throw err; } })()"
else
"Handlebars.compile(#{indent(string).inspect});"
end
end
end
end
end