diff --git a/app/index.html b/app/index.html
index 3c158c8..7389ce4 100644
--- a/app/index.html
+++ b/app/index.html
@@ -1,5 +1,5 @@
-
+
frontend
@@ -52,7 +52,7 @@
-
+
diff --git a/app/scripts/chatblendUi.js b/app/scripts/chatblendApp.js
similarity index 67%
rename from app/scripts/chatblendUi.js
rename to app/scripts/chatblendApp.js
index 79a4930..be77817 100644
--- a/app/scripts/chatblendUi.js
+++ b/app/scripts/chatblendApp.js
@@ -1,6 +1,6 @@
'use strict';
-angular.module('chatblendUi', ['ngAnimate', 'ngCookies', 'ngTouch', 'ngSanitize', 'ngResource', 'ngRoute'])
+angular.module('chatblendApp', ['ngAnimate', 'ngCookies', 'ngTouch', 'ngSanitize', 'ngResource', 'ngRoute'])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
@@ -11,4 +11,4 @@ angular.module('chatblendUi', ['ngAnimate', 'ngCookies', 'ngTouch', 'ngSanitize'
redirectTo: '/'
});
})
-;
+;
\ No newline at end of file
diff --git a/app/scripts/main/main-ctrl.js b/app/scripts/main/main-ctrl.js
index aa161f1..039a1bb 100644
--- a/app/scripts/main/main-ctrl.js
+++ b/app/scripts/main/main-ctrl.js
@@ -1,6 +1,6 @@
'use strict';
-angular.module('chatblendUi')
+angular.module('chatblendApp')
.controller('MainCtrl', function ($scope) {
$scope.awesomeThings = [
{
diff --git a/bower.json b/bower.json
index a84236e..7dfb056 100644
--- a/bower.json
+++ b/bower.json
@@ -1,5 +1,5 @@
{
- "name": "chatblendUi",
+ "name": "chatblendApp",
"version": "0.0.0",
"dependencies": {
"modernizr": "2.8.x",
diff --git a/gulp/build.js b/gulp/build.js
index 2e6a015..c90d13e 100644
--- a/gulp/build.js
+++ b/gulp/build.js
@@ -35,7 +35,7 @@ gulp.task('partials', function () {
quotes: true
}))
.pipe($.ngHtml2js({
- moduleName: 'chatblendUi',
+ moduleName: 'chatblendApp',
prefix: 'partials/'
}))
.pipe(gulp.dest('.tmp/partials'))
diff --git a/package.json b/package.json
index c5486d8..5adcd21 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "chatblendUi",
+ "name": "chatblendApp",
"version": "0.0.0",
"dependencies": {},
"devDependencies": {
diff --git a/test/unit/main.js b/test/unit/main.js
index a8e42ba..cfcb0da 100644
--- a/test/unit/main.js
+++ b/test/unit/main.js
@@ -3,7 +3,7 @@
describe('controllers', function(){
var scope;
- beforeEach(module('chatblendUi'));
+ beforeEach(module('chatblendApp'));
beforeEach(inject(function($rootScope) {
scope = $rootScope.$new();