-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major commit for getting angular working and setting up same pages
modified: .gitignore -- added media folders to ignore list modified: Gemfile modified: Gemfile.lock -- upgraded headless version modified: app/assets/javascripts/app.js -- worked out how to properly include the angularjs-ui directives (in the dependencies array) modified: app/assets/javascripts/angular/controllers/listen.js modified: app/assets/javascripts/angular/directives/directives.js modified: app/assets/javascripts/application.js modified: app/assets/stylesheets/base.css.scss modified: app/assets/stylesheets/layout.css.scss modified: app/assets/stylesheets/photos.css.scss modified: app/assets/stylesheets/projects.css.scss modified: app/assets/stylesheets/scaffolds.css.scss modified: app/assets/templates/listen.html modified: app/assets/templates/projects.html modified: app/controllers/audio_events_controller.rb modified: app/controllers/media_controller.rb modified: app/controllers/projects_controller.rb modified: app/views/layouts/application.html.erb -- continued development of project and audio listening page. refactored some sass. also fixed up defult color templates modified: config/initializers/mime_types.rb -- removed a wav mimetype - can't remember why modified: config/routes.rb -- added dummy route until proper "redirect all html route to angular" can be made to work modified: db/development_seeds.rb -- fixed formatting eroors new file: vendor/assets/javascripts/jQuery.jPlayer.2.2.0/Jplayer.swf new file: vendor/assets/javascripts/jQuery.jPlayer.2.2.0/add-on/jplayer.playlist.min.js new file: vendor/assets/javascripts/jQuery.jPlayer.2.2.0/add-on/jquery.jplayer.inspector.js new file: vendor/assets/javascripts/jQuery.jPlayer.2.2.0/jquery.jplayer.min.js new file: vendor/assets/javascripts/jQuery.jPlayer.2.2.0/popcorn/popcorn.jplayer.js -- added jplayer to project - not yet used
- Loading branch information
Showing
21 changed files
with
1,411 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,3 +39,9 @@ doc/ | |
|
||
# rubymine stuff | ||
/.idea | ||
|
||
|
||
# media folder | ||
/media/original/* | ||
/media/cachedimages/* | ||
/media/cachedaudio/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,68 @@ | ||
/********************************************************** | ||
* | ||
* Reusable components | ||
* | ||
**********************************************************/ | ||
|
||
|
||
/* | ||
* | ||
* Global variables | ||
* | ||
*/ | ||
|
||
// https://kuler.adobe.com/#themeID/1080677 | ||
// http://colorschemedesigner.com/ | ||
$master-background: #E9E7C2; | ||
$master-highlight: #787C39; | ||
$master-highlight-2: #908221 #D4DEB8; | ||
$master-dark: #2C2C2A; | ||
$master-dark-2: #584B28; | ||
$primary-color: #E9E7C2 #D4DEB8 #e8e7e4; | ||
$master-background: #E9E7C2 #E9EFD8 #e8e7e4; | ||
$master-highlight: #7B903C #7A903C #97904A; | ||
$master-highlight-2: #D4DEB8 #ADC7A5 #97764A; | ||
$master-dark: #2C2C2A #1D1D0E #78787A; | ||
$master-dark-2: #212120 #1D1D0E #AEADAC; | ||
$master-complementary: #4A2B66 #73305F #34346A; | ||
|
||
$standard-padding-horizontal: 0.5em; | ||
$standard-padding-vertical: 0.25em; | ||
$standrd-padding: $standard-padding-vertical $standard-padding-horizontal; | ||
|
||
|
||
/* | ||
* | ||
* Functions | ||
* | ||
*/ | ||
|
||
@mixin vendor-prefix($name, $arguments...) { | ||
#{$name}: $arguments; | ||
-webkit-#{$name}: $arguments; | ||
-ms-#{$name}: $arguments; | ||
-moz-#{$name}: $arguments; | ||
-o-#{$name}: $arguments; | ||
} | ||
|
||
/* | ||
* | ||
* Animations | ||
* | ||
*/ | ||
|
||
.standard-transition{ | ||
@include vendor-prefix(transition, all 0.5s ease); | ||
} | ||
|
||
.ui-show { | ||
@extend .standard-transition; | ||
} | ||
.ui-hide { | ||
opacity: 0; | ||
@extend .standard-transition; | ||
|
||
} | ||
|
||
|
||
/* | ||
* | ||
* Styles | ||
* // see layout.css.scss | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
// 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/ | ||
|
||
|
||
|
Oops, something went wrong.