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.
bazarr/static/plugins/jquery-steps-master/test/jquery.js

23 lines
540 B

(function ()
{
var versionPattern = /^[\?|\&]{1}version=(\d\.\d\.\d|latest)&?$/,
version = versionPattern.exec(location.search),
defaultVersion = "1.11.1",
file = "http://code.jquery.com/jquery-git.js";
if (version != null && version.length > 0)
{
version = version[1];
}
else
{
version = defaultVersion;
}
if (version !== "latest")
{
file = "../lib/jquery-" + version + ".min.js";
}
document.write("<script src='" + file + "'></script>");
})();