mirror of
https://github.com/discourse/discourse.git
synced 2026-09-05 04:40:41 -05:00
Many fixes for Ember 1.9.0
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user