aboutsummaryrefslogtreecommitdiffstats
path: root/src/delete/Widgets.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/delete/Widgets.js')
-rw-r--r--src/delete/Widgets.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/delete/Widgets.js b/src/delete/Widgets.js
index 96b63793..d2f0c75a 100644
--- a/src/delete/Widgets.js
+++ b/src/delete/Widgets.js
@@ -99,7 +99,7 @@ angularCallbacks['flashEvent'] = function(id, event, args) {
FileController.template = function(id) {
return jQuery('<span class="ng-upload-widget">' +
- '<input type="checkbox" ng-non-bindable="true"/>' +
+ '<input type="checkbox" ng:non-bindable="true"/>' +
'<object id="' + id + '" />' +
'<a></a>' +
'<span/>' +
@@ -640,7 +640,7 @@ function RepeaterUpdater(view, repeaterExpression, template, prefix) {
this.children = [];
var match = repeaterExpression.match(/^\s*(.+)\s+in\s+(.*)\s*$/);
if (! match) {
- throw "Expected ng-repeat in form of 'item in collection' but got '" +
+ throw "Expected ng:repeat in form of 'item in collection' but got '" +
repeaterExpression + "'.";
}
var keyValue = match[1];