Skip to content
This repository has been archived by the owner on Dec 22, 2022. It is now read-only.

Commit

Permalink
adding new fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
nnunn committed Apr 20, 2015
1 parent 5b23e25 commit ae565ed
Show file tree
Hide file tree
Showing 147 changed files with 395 additions and 163 deletions.
Binary file added app/assets/fonts/.DS_Store
Binary file not shown.
Binary file added app/assets/images/account-icon-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/destress.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/hours.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/15.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/17.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/18.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/lib-icons/hours.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/pet.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/ruthlibrary.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/sarah.jpg
Binary file added app/assets/images/twitter_normal.png
21 changes: 21 additions & 0 deletions app/assets/images/widget-hours-js.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

var hourswidget = "";


hourswidget = '<div class="hours-widget"><p><strong><span class="open">Open</span> until 9PM</strong></p></div>';


if (typeof jQuery != 'undefined') {


document.write(hourswidget);

jQuery('.hours-widget').css('margin', '10px 0');
jQuery('.hours-widget .open, .hours-widget .closed').css({ 'font-variant' : 'small-caps', 'font-size' : '120%' });


} else {

document.write(hourswidget);

}//closes if-else
Binary file added app/assets/javascripts/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion app/assets/javascripts/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
//
// Required by Blacklight
//= require blacklight/blacklight

//= require jquery.hoverIntent.minified

18 changes: 18 additions & 0 deletions app/assets/javascripts/ualib-home.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,23 @@ $(document).ready(function () {
$( "#ejournals-limit" ).click(function() {
$('#main-search').attr('action', '/ejournals');
$('#q').attr('placeholder', 'search ejournals...');
});
$( ".hours-select" ).change(function () {
var library = "";
var location = "";
$( "select option:selected" ).each(function() {
library += $( this ).text() + " ";
location = $(this).val();
});
imagestring ="/assets/lib-icons/"+location+".png";
$( ".library-picker" ).text(library);
$( ".lib-pick img" ).attr( "src", imagestring);
})
$(".news-square").hoverIntent(
function() {
$(this).find(".details").fadeIn(250);
},
function() {
$(this).find(".details").fadeOut(250);
});
});
Loading

0 comments on commit ae565ed

Please sign in to comment.