From fcf6e0e1101ca75f5bbaa78419984fa9870c8dca Mon Sep 17 00:00:00 2001 From: William Johnson Date: Fri, 11 Jul 2014 10:37:29 -0700 Subject: [PATCH] Fix formatting consistency in app.js Changed "/tab" at line 21 to '/tab' to keep quotation mark formatting consistent across app.js --- Ionic-seed/www/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ionic-seed/www/js/app.js b/Ionic-seed/www/js/app.js index 7e74acf..64653ab 100644 --- a/Ionic-seed/www/js/app.js +++ b/Ionic-seed/www/js/app.js @@ -18,7 +18,7 @@ angular.module('starter', ['ionic', 'starter.controllers', 'firebase']) // setup an abstract state for the tabs directive .state('tab', { - url: "/tab", + url: '/tab', abstract: true, templateUrl: "templates/tabs.html" })