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 >
Text File  |  2013-04-09  |  538b  |  11 lines

  1. /// <reference path="jquery.js" />
  2. /*jslint browser: true, windows: true */
  3. /*global $: false, OAuth: false, jQuery: false, window: false */
  4.  
  5. $(function () {
  6.   var parentWindow = System.Gadget.document.parentWindow;
  7.   $("#style_sheet").attr("href", parentWindow.APP.settings.styleSheet());
  8.   var tweet = parentWindow.APP.statusParams.tweet;
  9.   $("#content").html(tweet).append("<button>" + parentWindow.APP.locale.showuser_close + "</button>");
  10.   $("button").bind("click", function () { System.Gadget.Flyout.show = false; });
  11. });