Now layout is fully bootstrap based

Added hover.css
This commit is contained in:
Open-Steps.org 2015-01-09 15:18:57 +01:00
parent ba8497fb71
commit ed41988844
14 changed files with 5138 additions and 201 deletions

20
js/custom.js Normal file
View file

@ -0,0 +1,20 @@
$(document).ready(function(){
var currentEvent = "038";
$('.event-'+currentEvent).show();
$('.event-selector li').on("mouseover",function(){
$(this).attr("text-size","40px");
});
$('.event-selector li').on("click",function(){
var number = $(this).text();
console.log(number);
});
function loadEvent(eventNumber){
}
});