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