Skip to content

Commit 996738b

Browse files
authored
Merge pull request #49 from hectrucci/master
Custom template was ignored when using templateUrl attribute.
2 parents f6b565e + 7397bdf commit 996738b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/tour_helpers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
} else if (attrs[helpers.getAttrName('templateUrl')]) {
9797
lookupTemplate(attrs[helpers.getAttrName('templateUrl')], scope).then(function (template) {
9898
if (template) {
99-
options.template = template.data;
99+
options.template = template;
100100
deferred.resolve(template);
101101
}
102102
});

0 commit comments

Comments
 (0)