Commit 2b4f7a98
Changed files (10)
app
assets
stylesheets
app/assets/images/bg-header.png
Binary file
app/assets/images/border.png
Binary file
app/assets/images/chefhat_profile.PNG
Binary file
app/assets/images/header.png
Binary file
app/assets/images/sunset.png
Binary file
app/assets/javascripts/jasmine_examples/Player.js
@@ -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
app/assets/javascripts/jasmine_examples/Song.js
@@ -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
app/assets/stylesheets/favorites.css.scss
@@ -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/
app/assets/stylesheets/home.css.scss
app/assets/stylesheets/photos.css.scss
@@ -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/