Skip to content

Commit

Permalink
Fixing some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
snowyfox committed Jul 29, 2017
1 parent d574618 commit 29ef23b
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 147 deletions.
5 changes: 4 additions & 1 deletion Naranawm.iml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/ee_output" />
<excludeFolder url="file://$MODULE_DIR$/www/library" />
</content>
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
3 changes: 1 addition & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ const apiV1 = require('./routes/apiV1');
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'pug');

// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(favicon(path.join(__dirname, 'www', 'images', 'favicon', 'favicon.ico')));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
Expand Down
2 changes: 1 addition & 1 deletion www/components/version/interpolate-filter.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

angular.module('myApp.version.interpolate-filter', [])
angular.module('naranawm.version.interpolate-filter', [])

.filter('interpolate', ['version', function(version) {
return function(text) {
Expand Down
15 changes: 0 additions & 15 deletions www/components/version/interpolate-filter_test.js

This file was deleted.

2 changes: 1 addition & 1 deletion www/components/version/version-directive.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

angular.module('myApp.version.version-directive', [])
angular.module('naranawm.version.version-directive', [])

.directive('appVersion', ['version', function(version) {
return function(scope, elm, attrs) {
Expand Down
17 changes: 0 additions & 17 deletions www/components/version/version-directive_test.js

This file was deleted.

6 changes: 3 additions & 3 deletions www/components/version/version.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use strict';

angular.module('myApp.version', [
'myApp.version.interpolate-filter',
'myApp.version.version-directive'
angular.module('naranawm.version', [
'naranawm.version.interpolate-filter',
'naranawm.version.version-directive'
])

.value('version', '0.1');
11 changes: 0 additions & 11 deletions www/components/version/version_test.js

This file was deleted.

58 changes: 0 additions & 58 deletions www/index-async.html

This file was deleted.

8 changes: 4 additions & 4 deletions www/index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" ng-app="myApp" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" ng-app="myApp" class="no-js"> <!--<![endif]-->
<!--[if lt IE 7]> <html lang="en" ng-app="naranawm" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" ng-app="naranawm" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" ng-app="naranawm" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" ng-app="naranawm" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion www/view1/view1.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

angular.module('myApp.view1', ['ngRoute'])
angular.module('naranawm.view1', ['ngRoute'])

.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/view1', {
Expand Down
16 changes: 0 additions & 16 deletions www/view1/view1_test.js

This file was deleted.

2 changes: 1 addition & 1 deletion www/view2/view2.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

angular.module('myApp.view2', ['ngRoute'])
angular.module('naranawm.view2', ['ngRoute'])

.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/view2', {
Expand Down
16 changes: 0 additions & 16 deletions www/view2/view2_test.js

This file was deleted.

0 comments on commit 29ef23b

Please sign in to comment.