##// END OF EJS Templates
correction in widget.js
Sylvain Corlay -
Show More
@@ -343,7 +343,7 b' define(["widgets/js/manager",'
343 // Walk the lists until an unequal entry is found.
343 // Walk the lists until an unequal entry is found.
344 var i;
344 var i;
345 for (i = 0; i < new_list.length; i++) {
345 for (i = 0; i < new_list.length; i++) {
346 if (i < old_list.length || new_list[i] !== old_list[i]) {
346 if (i >= old_list.length || new_list[i] !== old_list[i]) {
347 break;
347 break;
348 }
348 }
349 }
349 }
General Comments 0
You need to be logged in to leave comments. Login now