From 952ec1df8a2db6c69bb543da08ebd4df64b98f36 Mon Sep 17 00:00:00 2001 From: Tim Buckley Date: Mon, 19 Oct 2015 16:09:55 -0600 Subject: [PATCH] Update application title. The application title variable was still using the example value from the project boilerplate. This replaces the example value with 'StackViz'. Change-Id: Ib8f004fcbdfbb3633697eaf287e6e76bec031349 --- app/js/constants.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/js/constants.js b/app/js/constants.js index 837f328..f0251f1 100644 --- a/app/js/constants.js +++ b/app/js/constants.js @@ -1,8 +1,7 @@ 'use strict'; var AppSettings = { - appTitle: 'Example Application', - apiUrl: '/api/v1' + appTitle: 'StackViz' }; -module.exports = AppSettings; \ No newline at end of file +module.exports = AppSettings;