Skip to content

Instantly share code, notes, and snippets.

@pzaich
Created September 22, 2014 20:10
Show Gist options
  • Select an option

  • Save pzaich/691d8b2ca86965f57b08 to your computer and use it in GitHub Desktop.

Select an option

Save pzaich/691d8b2ca86965f57b08 to your computer and use it in GitHub Desktop.
localytics style ng-template
# app/helpers/application_helper.rb
# Render a partial into a script tag so Angular
# sticks it into $templateCache
def load_ng_template(partial)
content_tag :script, type: 'text/ng-template', id: "#{partial}.html" do
render partial
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment