aboutsummaryrefslogtreecommitdiffstats
path: root/src/widgets.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets.js')
-rw-r--r--src/widgets.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets.js b/src/widgets.js
index f8efae60..7438254d 100644
--- a/src/widgets.js
+++ b/src/widgets.js
@@ -890,7 +890,7 @@ angularWidget('a', function() {
*/
angularWidget("@ng:repeat", function(expression, element){
element.removeAttr('ng:repeat');
- element.replaceWith(this.comment("ng:repeat: " + expression));
+ element.replaceWith(jqLite("<!-- ng:repeat: " + expression + " --!>"));
var template = this.compile(element);
return function(reference){
var match = expression.match(/^\s*(.+)\s+in\s+(.*)\s*$/),