Add 'use strict'.

This commit is contained in:
Alexis Lahouze 2016-02-07 23:40:39 +01:00
parent 60b00b7774
commit ebaf33845a
4 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,7 @@
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
*/
// vim: set tw=80 ts=2 sw=2 sts=2:
'use strict';
accountantApp

View File

@ -14,6 +14,8 @@
You should have received a copy of the GNU Affero General Public License
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
*/
'use strict';
var accountantApp = angular.module("accountantApp", [
'ngResource', 'ngRoute',
'mgcrea.ngStrap',

View File

@ -15,6 +15,8 @@
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
*/
// vim: set tw=80 ts=2 sw=2 sts=2:
'use strict';
accountantApp
.factory("Operation", [ "$resource", function($resource) {

View File

@ -14,6 +14,8 @@
You should have received a copy of the GNU Affero General Public License
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
*/
'use strict';
accountantApp
.factory("ScheduledOperation", ["$resource", function($resource) {