Skip to content

Commit

Permalink
AngularJS: add 'use strict'
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMinar committed Jul 3, 2012
1 parent 3003cec commit 5fb2004
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions architecture-examples/angularjs-perf/js/app.js
@@ -1,3 +1,5 @@
'use strict';

/**
* The main TodoMVC app module.
*
Expand Down
@@ -1,3 +1,5 @@
'use strict';

/**
* The main controller for the app. The controller:
* - retrieves and persist the model via the todoStorage service
Expand Down
@@ -1,3 +1,5 @@
'use strict';

/**
* Directive that executes an expression when the element it is applied to loses focus.
*/
Expand Down
@@ -1,3 +1,5 @@
'use strict';

/**
* Directive that places focus on the element it is applied to when the expression it binds to evaluates to true.
*/
Expand Down
@@ -1,3 +1,5 @@
'use strict';

/**
* Services that persists and retrieves TODOs from localStorage.
*/
Expand Down
2 changes: 2 additions & 0 deletions architecture-examples/angularjs/js/app.js
@@ -1,3 +1,5 @@
'use strict';

/**
* The main TodoMVC app module.
*
Expand Down
2 changes: 2 additions & 0 deletions architecture-examples/angularjs/js/controllers/todoCtrl.js
@@ -1,3 +1,5 @@
'use strict';

/**
* The main controller for the app. The controller:
* - retrieves and persist the model via the todoStorage service
Expand Down
2 changes: 2 additions & 0 deletions architecture-examples/angularjs/js/directives/todoBlur.js
@@ -1,3 +1,5 @@
'use strict';

/**
* Directive that executes an expression when the element it is applied to loses focus.
*/
Expand Down
2 changes: 2 additions & 0 deletions architecture-examples/angularjs/js/directives/todoFocus.js
@@ -1,3 +1,5 @@
'use strict';

/**
* Directive that places focus on the element it is applied to when the expression it binds to evaluates to true.
*/
Expand Down
2 changes: 2 additions & 0 deletions architecture-examples/angularjs/js/services/todoStorage.js
@@ -1,3 +1,5 @@
'use strict';

/**
* Services that persists and retrieves TODOs from localStorage.
*/
Expand Down

0 comments on commit 5fb2004

Please sign in to comment.