mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
fixing missing semicolon
This commit is contained in:
parent
451a711343
commit
7ed2191b07
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ angularService("$invalidWidgets", function(){
|
|||
for(var i = 0; i < invalidWidgets.length;) {
|
||||
var widget = invalidWidgets[i];
|
||||
if (isOrphan(widget[0])) {
|
||||
invalidWidgets.splice(i, 1)
|
||||
invalidWidgets.splice(i, 1);
|
||||
if (widget.dealoc) widget.dealoc();
|
||||
} else {
|
||||
i++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue