home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 117
/
FreelogNo117-OctobreNovembre2013.iso
/
Theme
/
8GadgetPack
/
8GadgetPackSetup.msi
/
Gadgets.7z
/
Gadgets
/
tweetz.gadget
/
inreplyto.js
< prev
next >
Wrap
Text File
|
2013-04-09
|
538b
|
11 lines
/// <reference path="jquery.js" />
/*jslint browser: true, windows: true */
/*global $: false, OAuth: false, jQuery: false, window: false */
$(function () {
var parentWindow = System.Gadget.document.parentWindow;
$("#style_sheet").attr("href", parentWindow.APP.settings.styleSheet());
var tweet = parentWindow.APP.statusParams.tweet;
$("#content").html(tweet).append("<button>" + parentWindow.APP.locale.showuser_close + "</button>");
$("button").bind("click", function () { System.Gadget.Flyout.show = false; });
});