From 14838478065cf8dbbc4e6725a08ab8eb6e2ff7aa Mon Sep 17 00:00:00 2001 From: Sidney Bofah Date: Sun, 1 Feb 2015 04:40:29 +0100 Subject: [PATCH] Added fixes to pass baseline code quality checks (strict mode, semicolon) --- js/app.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index 7ef4d4e..104528f 100644 --- a/js/app.js +++ b/js/app.js @@ -1,3 +1,5 @@ +'use strict'; + // Ionic Starter App // angular.module is a global place for creating, registering and retrieving Angular modules @@ -16,4 +18,4 @@ angular.module('starter', ['ionic']) StatusBar.styleDefault(); } }); -}) +});