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

(Created page with "(function () { $(function () { $(".slider").slider({ indicators: false }); }) }());")
 
 
(2 intermediate revisions 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: 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
       });
   })

}());