fix widget example code

This commit is contained in:
Igor Minar 2011-05-13 07:15:59 -07:00
parent cc5dfaf0ab
commit b85e95709d

View file

@ -32,7 +32,7 @@ angular.widget('my:watch', function(compileElement) {
var currentScope = this;
currentScope.$watch(exp, function(value){
alert(value);
}};
});
};
});
</pre>