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

 
(One intermediate revision by the same user not shown)
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
 
         });
 
         });
 
     })
 
     })
 
}());
 
}());

Latest revision as of 00:45, 2 November 2017

(function () {

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

}());