Skip to content

Commit

Permalink
rename to chatblendApp
Browse files Browse the repository at this point in the history
  • Loading branch information
slogsdon committed Sep 15, 2014
1 parent f693b21 commit 762ea5f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html class="no-js" ng-app="chatblendUi">
<html class="no-js" ng-app="chatblendApp">
<head>
<meta charset="utf-8">
<title>frontend</title>
Expand Down Expand Up @@ -52,7 +52,7 @@
<!-- endbuild -->

<!-- build:js({app,.tmp}) scripts/main.js -->
<script src="scripts/chatblendUi.js"></script>
<script src="scripts/chatblendApp.js"></script>
<script src="scripts/main/main-ctrl.js"></script>

<!-- inject:partials -->
Expand Down
4 changes: 2 additions & 2 deletions app/scripts/chatblendUi.js → app/scripts/chatblendApp.js
Original file line number Diff line number Diff line change
@@ -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('/', {
Expand All @@ -11,4 +11,4 @@ angular.module('chatblendUi', ['ngAnimate', 'ngCookies', 'ngTouch', 'ngSanitize'
redirectTo: '/'
});
})
;
;
2 changes: 1 addition & 1 deletion app/scripts/main/main-ctrl.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

angular.module('chatblendUi')
angular.module('chatblendApp')
.controller('MainCtrl', function ($scope) {
$scope.awesomeThings = [
{
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "chatblendUi",
"name": "chatblendApp",
"version": "0.0.0",
"dependencies": {
"modernizr": "2.8.x",
Expand Down
2 changes: 1 addition & 1 deletion gulp/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ gulp.task('partials', function () {
quotes: true
}))
.pipe($.ngHtml2js({
moduleName: 'chatblendUi',
moduleName: 'chatblendApp',
prefix: 'partials/'
}))
.pipe(gulp.dest('.tmp/partials'))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "chatblendUi",
"name": "chatblendApp",
"version": "0.0.0",
"dependencies": {},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
describe('controllers', function(){
var scope;

beforeEach(module('chatblendUi'));
beforeEach(module('chatblendApp'));

beforeEach(inject(function($rootScope) {
scope = $rootScope.$new();
Expand Down

0 comments on commit 762ea5f

Please sign in to comment.