@@ -70,7 +70,7 @@ docsApp.serviceFactory.fullTextSearch = ['$q', '$rootScope', function($q, $rootS
70
70
onReady : function ( ) {
71
71
this . ready = true ;
72
72
var self = this ;
73
- self . deferReady . resolve ( ) ;
73
+ self . deferReady . resolve ( ) ;
74
74
if ( ! $rootScope . $$phase ) {
75
75
$rootScope . $apply ( ) ;
76
76
}
@@ -114,9 +114,9 @@ docsApp.serviceFactory.fullTextSearch = ['$q', '$rootScope', function($q, $rootS
114
114
if ( groups [ section ] . length < 15 ) {
115
115
groups [ section ] . push ( item ) ;
116
116
}
117
- } )
117
+ } ) ;
118
118
onReady ( groups ) ;
119
- } )
119
+ } ) ;
120
120
}
121
121
} ;
122
122
} ] ;
@@ -134,8 +134,8 @@ docsApp.directive.focused = function($timeout) {
134
134
scope . $eval ( attrs . focused + '=false' ) ;
135
135
} ) ;
136
136
} ) ;
137
- scope . $eval ( attrs . focused + '=true' )
138
- }
137
+ scope . $eval ( attrs . focused + '=true' ) ;
138
+ } ;
139
139
} ;
140
140
141
141
@@ -175,7 +175,7 @@ docsApp.directive.sourceEdit = function(getEmbeddedTemplate) {
175
175
openPlunkr ( sources ) ;
176
176
} ;
177
177
}
178
- }
178
+ } ;
179
179
180
180
function read ( text ) {
181
181
var files = [ ] ;
@@ -243,7 +243,7 @@ docsApp.directive.docTutorialReset = function() {
243
243
'</div>\n' ) ;
244
244
}
245
245
} ;
246
- }
246
+ } ;
247
247
248
248
249
249
docsApp . serviceFactory . angularUrls = function ( $document ) {
@@ -257,7 +257,7 @@ docsApp.serviceFactory.angularUrls = function($document) {
257
257
} ) ;
258
258
259
259
return urls ;
260
- }
260
+ } ;
261
261
262
262
263
263
docsApp . serviceFactory . formPostData = function ( $document ) {
@@ -290,7 +290,7 @@ docsApp.serviceFactory.openPlunkr = function(templateMerge, formPostData, angula
290
290
var scriptDeps = '' ;
291
291
angular . forEach ( content . deps , function ( file ) {
292
292
if ( file . name !== 'angular.js' ) {
293
- scriptDeps += ' <script src="' + file . name + '"></script>\n'
293
+ scriptDeps += ' <script src="' + file . name + '"></script>\n' ;
294
294
}
295
295
} ) ;
296
296
indexProp = {
@@ -307,7 +307,7 @@ docsApp.serviceFactory.openPlunkr = function(templateMerge, formPostData, angula
307
307
308
308
postData [ 'files[index.html]' ] = templateMerge ( indexHtmlContent , indexProp ) ;
309
309
postData [ 'tags[]' ] = "angularjs" ;
310
-
310
+
311
311
postData . private = true ;
312
312
postData . description = 'AngularJS Example Plunkr' ;
313
313
@@ -426,7 +426,7 @@ docsApp.controller.DocsController = function($scope, $location, $window, $cookie
426
426
last : this . $last ,
427
427
active : page1 && this . currentPage == page1 || page2 && this . currentPage == page2
428
428
} ;
429
- }
429
+ } ;
430
430
431
431
$scope . submitForm = function ( ) {
432
432
$scope . bestMatch && $location . path ( $scope . bestMatch . page . url ) ;
@@ -625,7 +625,7 @@ docsApp.controller.DocsController = function($scope, $location, $window, $cookie
625
625
} ,
626
626
types : [ ] ,
627
627
filters : [ ]
628
- }
628
+ } ;
629
629
modules . push ( module ) ;
630
630
}
631
631
return module ;
@@ -676,7 +676,7 @@ docsApp.controller.DocsController = function($scope, $location, $window, $cookie
676
676
677
677
angular . element ( document . getElementById ( 'disqus_thread' ) ) . html ( '' ) ;
678
678
}
679
- }
679
+ } ;
680
680
681
681
682
682
angular . module ( 'docsApp' , [ 'ngResource' , 'ngCookies' , 'ngSanitize' , 'bootstrap' , 'bootstrapPrettify' ] ) .
0 commit comments