aboutsummaryrefslogtreecommitdiffstats
path: root/test/directive/ngEventDirsSpec.js
diff options
context:
space:
mode:
authorIgor Minar2012-03-09 00:00:05 -0800
committerIgor Minar2012-03-09 16:14:26 -0800
commitf4d338d393dabb49182d40b4fe90c4d1b51621c0 (patch)
tree6c20fbef9865869e9db44f27c53aec11f1e30d5e /test/directive/ngEventDirsSpec.js
parent0bfaa579c04d1b7cd21fbe16bfbc47a684f223b3 (diff)
downloadangular.js-f4d338d393dabb49182d40b4fe90c4d1b51621c0.tar.bz2
chore(*): refactor all ng: to ng-
Diffstat (limited to 'test/directive/ngEventDirsSpec.js')
-rw-r--r--test/directive/ngEventDirsSpec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/directive/ngEventDirsSpec.js b/test/directive/ngEventDirsSpec.js
index 2b14bb33..c42f9b26 100644
--- a/test/directive/ngEventDirsSpec.js
+++ b/test/directive/ngEventDirsSpec.js
@@ -9,10 +9,10 @@ describe('event directives', function() {
});
- describe('ng:submit', function() {
+ describe('ng-submit', function() {
it('should get called on form submit', inject(function($rootScope, $compile) {
- element = $compile('<form action="" ng:submit="submitted = true">' +
+ element = $compile('<form action="" ng-submit="submitted = true">' +
'<input type="submit"/>' +
'</form>')($rootScope);
$rootScope.$digest();