This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function minVersion(version) { | |
//console.log('minVersion:: testing for jquery minimum of ' + version ); | |
if(typeof window.jQuery == 'undefined'){ | |
console.log('minVersion:: no jquery found ...'); | |
return false; | |
} | |
var vrs = window.jQuery.fn.jquery.split('.'), | |
min = version.split('.'); |