From ac5e6904ad28eac440685a44f26b083c1fed5a34 Mon Sep 17 00:00:00 2001 From: Bengt Brodersen Date: Wed, 16 Dec 2015 18:44:22 +0100 Subject: [PATCH] remove loading query --- bookmarklet.js | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/bookmarklet.js b/bookmarklet.js index fc0b095..46d49fb 100644 --- a/bookmarklet.js +++ b/bookmarklet.js @@ -21,18 +21,11 @@ } }); - // load jQuery - - appendScript('//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js'); - - // wait untill all scripts loaded - appendScript('https://qoomon.github.io/void', function() { - init().then(function(){ - return main(); - }).catch(function(cause){ - console.log("ERROR " + cause.stack); - alert("Sorry something went wrong.\n\nPlease create an issue at " + global.issueTrackingUrl + "\n\n" + cause.stack); - }); + init().then(function(){ + return main(); + }).catch(function(cause){ + console.log("ERROR " + cause.stack); + alert("Sorry something went wrong.\n\nPlease create an issue at " + global.issueTrackingUrl + "\n\n" + cause.stack); }); function main() {