jira-card-printer/bookmarkletLoader.js
Dávid Danyi d64273c9e9 * deploy.php fixed
* bookmark installer fixed
2016-08-29 17:06:02 +02:00

9 lines
354 B
JavaScript

// tested for Chrome, IE
javascript:(function(){
var head = document.getElementsByTagName("head")[0];
var scriptElement = document.createElement("script");
scriptElement.src = 'http://vasgyuro.tsp/~edvidan/jira-card-printer/bookmarklet.js';
head.appendChild(scriptElement);
head.removeChild(scriptElement);
})();