Skip to content

Commit a9bdbb6

Browse files
committed
Fix trailing space in ngdc
1 parent 0f5c049 commit a9bdbb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

UltiSnips/javascript/angular_js.snippets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ endsnippet
6060
# Route Based Snippets
6161
snippet ngrw "Defines a when condition of an AngularJS route."
6262
$routeProvider.when('${1:url}', {
63-
templateUrl: '${2:templateUrl}',
63+
templateUrl: '${2:templateUrl}',
6464
controller: '${3:controller}'
6565
});
6666
$0
@@ -70,7 +70,7 @@ endsnippet
7070

7171
snippet ngrwr "Defines a when condition of an AngularJS route with the resolve block."
7272
$routeProvider.when('${1:url}', {
73-
templateUrl: '${2:templateUrl}',
73+
templateUrl: '${2:templateUrl}',
7474
controller: '${3:controller}',
7575
resolve: {
7676
$4
@@ -157,7 +157,7 @@ directive('${1:directiveName}', function factory(${2:injectables}) {
157157
${3:directiveAttrs},
158158
compile: function compile(tElement, tAttrs, transclude) {
159159
return function (scope, element, attrs) {
160-
160+
$0
161161
}
162162
}
163163
};

0 commit comments

Comments
 (0)