Created
September 22, 2014 20:10
-
-
Save pzaich/691d8b2ca86965f57b08 to your computer and use it in GitHub Desktop.
localytics style ng-template
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/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