You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
786 B
30 lines
786 B
/* ------------------------------------------------------------------------------ |
|
* |
|
* # Dual sidebar |
|
* |
|
* Specific JS code additions for Dual sidebar pages set |
|
* |
|
* Version: 1.0 |
|
* Latest update: Aug 1, 2015 |
|
* |
|
* ---------------------------------------------------------------------------- */ |
|
|
|
$(function() { |
|
|
|
// Initialize multiple Switchery toggles |
|
if (Array.prototype.forEach) { |
|
var elems = Array.prototype.slice.call(document.querySelectorAll('.switchery')); |
|
|
|
elems.forEach(function(html) { |
|
var switchery = new Switchery(html); |
|
}); |
|
} |
|
else { |
|
var elems = document.querySelectorAll('.switchery'); |
|
|
|
for (var i = 0; i < elems.length; i++) { |
|
var switchery = new Switchery(elems[i]); |
|
} |
|
} |
|
|
|
});
|
|
|