jira-card-printer/bookmarkletLoader.js

9 lines
356 B
JavaScript
Raw Normal View History

2015-01-23 13:45:29 +01:00
// tested for Chrome, IE
javascript:(function(){
var head = document.getElementsByTagName("head")[0];
var scriptElement = document.createElement("script");
2015-02-15 19:19:47 +01:00
scriptElement.src = 'https://qoomon.github.io/Jira-Issue-Card-Printer/bookmarklet.js';
2015-01-23 13:45:29 +01:00
head.appendChild(scriptElement);
head.removeChild(scriptElement);
})();