Difference between revisions of "Team:TUDelft/js/cow-slider"

Line 1: Line 1:
 
(function () {
 
(function () {
 
     $(function () {
 
     $(function () {
 +
        var height = 500;
 +
        console.log("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA");
 +
        console.log("Height is " + height");
 
         $(".slider").slider({
 
         $(".slider").slider({
 
             indicators: false,  
 
             indicators: false,  
             height: 500
+
             height: height
 
         });
 
         });
 
     })
 
     })
 
}());
 
}());

Revision as of 00:40, 2 November 2017

(function () {

   $(function () {
       var height = 500; 
       console.log("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA");
       console.log("Height is " + height");
       $(".slider").slider({
           indicators: false, 
           height: height
       });
   })

}());