/*
@author: Bruno Guerreiro
@email: american.jesus.pt@gmail.com
@update: http://userscripts.org/jetpacks/42.js
@title: TwiterGadget Slidebar
@description: This show the TwitterGadget on the Jetpack sidebar
@version: 0.1
Based on: http://userscripts.org/jetpacks/36 by jimmy miller
*/
jetpack.future.import("slideBar");
jetpack.slideBar.append({
icon: "http://www.twittergadget.com/favicon.ico",
width: 350,
html: '<style>scrollbar * {display: none !important;}</style><iframe class="frame" height="99%" width="100%" src="http://www.twittergadget.com/gadget.asp"></frame>',
onSelect: function(slide) {slide({ size: 350 });
if (jetpack.tabs.focused.contentDocument.getSelection() != "") {
$(slide.doc).find(".frame").attr("src", "http://www.twittergadget.com/gadget.asp" + jetpack.tabs.focused.contentDocument.getSelection());
}
},
});