From e3d3b08015d424b73f87f92590c482f7ba25ec92 Mon Sep 17 00:00:00 2001 From: pipe Date: Wed, 5 Mar 2014 18:37:44 +0530 Subject: [PATCH] changed the routing --- 2.3.2/app/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.3.2/app/js/app.js b/2.3.2/app/js/app.js index 6324987..0b31f04 100755 --- a/2.3.2/app/js/app.js +++ b/2.3.2/app/js/app.js @@ -5,6 +5,6 @@ angular.module('bootstrapVariablesEditor', ['ngRoute','bootstrapVariablesEditor. config(['$locationProvider','$routeProvider', function($locationProvider,$routeProvider) { $locationProvider.hashPrefix('!'); //$routeProvider.when('/intro', {templateUrl: 'partials/intro.html', controller: IntroCtrl}); - $routeProvider.when('/', {templateUrl: 'partials/editor.html', controller: LessCtrl}); + $routeProvider.when('/editor', {templateUrl: 'partials/editor.html', controller: LessCtrl}); $routeProvider.otherwise({redirectTo: '/editor'}); }]);