Skip to content

Commit

Permalink
Replace all non-angular JS code with AngularJS Services.
Browse files Browse the repository at this point in the history
  • Loading branch information
RandolphBurt committed Oct 13, 2014
1 parent 6f63923 commit 0596b3d
Show file tree
Hide file tree
Showing 45 changed files with 2,062 additions and 1,888 deletions.
34 changes: 34 additions & 0 deletions .jshintrc
@@ -0,0 +1,34 @@
{
// See http://jshint.com/docs/ for more details
"bitwise": false,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": false,
"indent": false,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"quotmark": "double",
"unused": false,
"undef": true,
"strict": true,
"trailing": true,
"maxdepth": 4,
"maxlen": false,

"browser": true,
"sub": true,
"devel": true,
"nomen": false,
"white": false,
"jquery": true,
"laxbreak": true,

// Custom globals.
"predef": [
"angular",
"$script",
]
}
4 changes: 1 addition & 3 deletions App/gameApp.js
@@ -1,3 +1 @@
'use strict';

var gameApp = angular.module('gameApp', []);
angular.module("gameApp", []);
7 changes: 0 additions & 7 deletions App/js/GameStateEnum.js

This file was deleted.

45 changes: 0 additions & 45 deletions App/js/characters/Bullet.js

This file was deleted.

219 changes: 0 additions & 219 deletions App/js/characters/Centipede.js

This file was deleted.

50 changes: 0 additions & 50 deletions App/js/characters/CentipedeBody.js

This file was deleted.

0 comments on commit 0596b3d

Please sign in to comment.