mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-11-10 13:14:16 +00:00
[ui_enhancements] Change the way JQuery is loaded. Fixes #84
This commit is contained in:
parent
8b3578f29f
commit
b344f19c36
1 changed files with 6 additions and 10 deletions
|
@ -1,24 +1,21 @@
|
|||
// ==UserScript==
|
||||
// @name Musicbrainz UI enhancements
|
||||
// @description Various UI enhancements for Musicbrainz
|
||||
// @version 2015.09.09.1
|
||||
// @version 2015.09.15.1
|
||||
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_ui_enhancements.user.js
|
||||
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_ui_enhancements.user.js
|
||||
// @icon http://wiki.musicbrainz.org/-/images/3/3d/Musicbrainz_logo.png
|
||||
// @namespace http://userscripts.org/users/22504
|
||||
// @include http*://*musicbrainz.org/*
|
||||
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js
|
||||
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.js
|
||||
// @require https://raw.github.com/murdos/mbediting.js/master/mbediting.js
|
||||
// ==/UserScript==
|
||||
|
||||
function addJQuery(callback) {var script = document.createElement("script");script.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js");script.addEventListener('load', function() {var script = document.createElement("script");script.textContent = "(" + callback.toString() + ")();";document.body.appendChild(script);}, false);document.body.appendChild(script);}addJQuery(main);
|
||||
// prevent JQuery conflicts, see http://wiki.greasespot.net/@grant
|
||||
this.$ = this.jQuery = jQuery.noConflict(true);
|
||||
|
||||
function main() {
|
||||
$(document).ready(function () {
|
||||
LASTFM_APIKEY = null;
|
||||
jQuery.noConflict();
|
||||
(function ($) {
|
||||
|
||||
// -------------- Start of script ------------------------
|
||||
|
||||
// Highlight table rows
|
||||
$('table.tbl tbody tr').hover(
|
||||
|
@ -240,6 +237,5 @@ function main() {
|
|||
|
||||
// -------------- End of script ------------------------
|
||||
|
||||
}(jQuery));
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue