diff options
| author | mo khan <mo@mokhan.ca> | 2013-06-16 22:28:27 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-06-16 22:28:27 -0600 |
| commit | 2b4f7a98a89cb34785e1b7bf939ccb5477d37fcf (patch) | |
| tree | ffbe23ea0dca2d96f3ab6ca7ed53a6a0e3cae58a | |
| parent | bfa3834ee53726c362c4353c3340f927c1f347fc (diff) | |
remove unused assets
| -rw-r--r-- | app/assets/images/bg-header.png | bin | 47557 -> 0 bytes | |||
| -rwxr-xr-x | app/assets/images/border.png | bin | 112 -> 0 bytes | |||
| -rw-r--r-- | app/assets/images/chefhat_profile.PNG | bin | 2292 -> 0 bytes | |||
| -rw-r--r-- | app/assets/images/header.png | bin | 64931 -> 0 bytes | |||
| -rw-r--r-- | app/assets/images/sunset.png | bin | 136055 -> 0 bytes | |||
| -rw-r--r-- | app/assets/javascripts/jasmine_examples/Player.js | 22 | ||||
| -rw-r--r-- | app/assets/javascripts/jasmine_examples/Song.js | 7 | ||||
| -rw-r--r-- | app/assets/stylesheets/favorites.css.scss | 3 | ||||
| -rw-r--r-- | app/assets/stylesheets/home.css.scss | 0 | ||||
| -rw-r--r-- | app/assets/stylesheets/photos.css.scss | 3 |
10 files changed, 0 insertions, 35 deletions
diff --git a/app/assets/images/bg-header.png b/app/assets/images/bg-header.png Binary files differdeleted file mode 100644 index ba162f6c..00000000 --- a/app/assets/images/bg-header.png +++ /dev/null diff --git a/app/assets/images/border.png b/app/assets/images/border.png Binary files differdeleted file mode 100755 index f463a10d..00000000 --- a/app/assets/images/border.png +++ /dev/null diff --git a/app/assets/images/chefhat_profile.PNG b/app/assets/images/chefhat_profile.PNG Binary files differdeleted file mode 100644 index debe780e..00000000 --- a/app/assets/images/chefhat_profile.PNG +++ /dev/null diff --git a/app/assets/images/header.png b/app/assets/images/header.png Binary files differdeleted file mode 100644 index 70b66ac2..00000000 --- a/app/assets/images/header.png +++ /dev/null diff --git a/app/assets/images/sunset.png b/app/assets/images/sunset.png Binary files differdeleted file mode 100644 index 1c4b792a..00000000 --- a/app/assets/images/sunset.png +++ /dev/null diff --git a/app/assets/javascripts/jasmine_examples/Player.js b/app/assets/javascripts/jasmine_examples/Player.js deleted file mode 100644 index fcce8268..00000000 --- a/app/assets/javascripts/jasmine_examples/Player.js +++ /dev/null @@ -1,22 +0,0 @@ -function Player() { -} -Player.prototype.play = function(song) { - this.currentlyPlayingSong = song; - this.isPlaying = true; -}; - -Player.prototype.pause = function() { - this.isPlaying = false; -}; - -Player.prototype.resume = function() { - if (this.isPlaying) { - throw new Error("song is already playing"); - } - - this.isPlaying = true; -}; - -Player.prototype.makeFavorite = function() { - this.currentlyPlayingSong.persistFavoriteStatus(true); -};
\ No newline at end of file diff --git a/app/assets/javascripts/jasmine_examples/Song.js b/app/assets/javascripts/jasmine_examples/Song.js deleted file mode 100644 index a8a3f2dd..00000000 --- a/app/assets/javascripts/jasmine_examples/Song.js +++ /dev/null @@ -1,7 +0,0 @@ -function Song() { -} - -Song.prototype.persistFavoriteStatus = function(value) { - // something complicated - throw new Error("not yet implemented"); -};
\ No newline at end of file diff --git a/app/assets/stylesheets/favorites.css.scss b/app/assets/stylesheets/favorites.css.scss deleted file mode 100644 index dacd946d..00000000 --- a/app/assets/stylesheets/favorites.css.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Likes controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/home.css.scss b/app/assets/stylesheets/home.css.scss deleted file mode 100644 index e69de29b..00000000 --- a/app/assets/stylesheets/home.css.scss +++ /dev/null diff --git a/app/assets/stylesheets/photos.css.scss b/app/assets/stylesheets/photos.css.scss deleted file mode 100644 index 16dc630d..00000000 --- a/app/assets/stylesheets/photos.css.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Photos controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ |
