Skip to content

Commit 7500db2

Browse files
committed
replace references to "chrome" with cordova
1 parent 69d1323 commit 7500db2

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
YO ANGULAR CHROME
1+
YO ANGULAR CORDOVA
22
=================
33

4-
Follow the commit history of this project to learn how to build a yeoman angular chrome app.
4+
Follow the commit history of this project to learn how to build a yeoman angular cordova app.
55

66
[![Build Status](https://travis-ci.org/infomofo/cordova-angular-md-template.svg?branch=master)](https://travis-ci.org/infomofo/cordova-angular-md-template)
77

app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="stylesheet" href="styles/main.css">
1919
<!-- endbuild -->
2020
</head>
21-
<body layout="row" ng-app="yoAngularChromeApp">
21+
<body layout="row" ng-app="yoAngularCordovaApp">
2222

2323
<!--[if lt IE 7]>
2424
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade

app/scripts/app.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
/**
44
* @ngdoc overview
5-
* @name yoAngularChromeApp
5+
* @name yoAngularCordovaApp
66
* @description
7-
* # yoAngularChromeApp
7+
* # yoAngularCordovaApp
88
*
99
* Main module of the application.
1010
*/
1111
var app = angular
12-
.module('yoAngularChromeApp', [
12+
.module('yoAngularCordovaApp', [
1313
'ngAnimate',
1414
'ngCookies',
1515
'ngResource',

app/scripts/controllers/about.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
/**
44
* @ngdoc function
5-
* @name yoAngularChromeApp.controller:AboutCtrl
5+
* @name yoAngularCordovaApp.controller:AboutCtrl
66
* @description
77
* # AboutCtrl
8-
* Controller of the yoAngularChromeApp
8+
* Controller of the yoAngularCordovaApp
99
*/
10-
angular.module('yoAngularChromeApp')
10+
angular.module('yoAngularCordovaApp')
1111
.controller('AboutCtrl', function ($scope) {
1212
$scope.awesomeThings = [
1313
'HTML5 Boilerplate',

app/scripts/controllers/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
/**
44
* @ngdoc function
5-
* @name yoAngularChromeApp.controller:MainCtrl
5+
* @name yoAngularCordovaApp.controller:MainCtrl
66
* @description
77
* # MainCtrl
8-
* Controller of the yoAngularChromeApp
8+
* Controller of the yoAngularCordovaApp
99
*/
10-
angular.module('yoAngularChromeApp')
10+
angular.module('yoAngularCordovaApp')
1111
.controller('MainCtrl', function ($scope) {
1212
$scope.awesomeThings = [
1313
'HTML5 Boilerplate',

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "yo-angular-chrome",
2+
"name": "yo-angular-cordova",
33
"version": "0.0.0",
44
"dependencies": {
55
"angular": "1.3.11",

0 commit comments

Comments
 (0)