We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2060b9 commit 37746fcCopy full SHA for 37746fc
test/fixtures/1in.js
@@ -3,8 +3,8 @@ angular.module("foo").directive("bar",
3
return {
4
template: (
5
<div>
6
- <h1>Multi-line example</h1>
7
- <div class="bar">This is a bit more <em>advanced</em>.</div>
+ <h1>{{title}}</h1>
+ <div class="bar" ng-click="go()">This is a bit more <em>advanced</em>.</div>
8
</div>
9
)
10
}
test/fixtures/1out.js
@@ -2,7 +2,7 @@ angular.module("foo").directive("bar",
2
function() {
- "<div>\n <h1>Multi-line example</h1>\n <div class=\"bar\">This is a bit more <em>advanced</em>.</div>\n</div>"
+ "<div>\n <h1>{{title}}</h1>\n <div class=\"bar\" ng-click=\"go()\">This is a bit more <em>advanced</em>.</div>\n</div>"
0 commit comments