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: 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 }); })
}());