home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 May / PCWorld_2008-05_cd.bin / komunikace / sameplace / sameplace-suite-release.xpi / sameplace-0.9.1.xpi / chrome / sameplace.jar / content / overlay.js < prev    next >
Text File  |  2008-02-11  |  2KB  |  44 lines

  1. /*
  2.  * Copyright 2006-2007 by Massimiliano Mirra
  3.  * 
  4.  * This file is part of SamePlace.
  5.  * 
  6.  * SamePlace is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation; either version 3 of the License, or (at your
  9.  * option) any later version.
  10.  * 
  11.  * SamePlace is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  * 
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  * 
  19.  * The interactive user interfaces in modified source and object code
  20.  * versions of this program must display Appropriate Legal Notices, as
  21.  * required under Section 5 of the GNU General Public License version 3.
  22.  *
  23.  * In accordance with Section 7(b) of the GNU General Public License
  24.  * version 3, modified versions must display the "Powered by SamePlace"
  25.  * logo to users in a legible manner and the GPLv3 text must be made
  26.  * available to them.
  27.  * 
  28.  * Author: Massimiliano Mirra, <bard [at] hyperstruct [dot] net>
  29.  *  
  30.  */
  31.  
  32.  
  33. window.addEventListener(
  34.     'load', function(event) { sameplace.init(); }, false);
  35. window.addEventListener(
  36.     'unload', function(event) { sameplace.finish(); }, false);
  37.  
  38. var sameplace = {};
  39.  
  40. Components
  41. .classes['@mozilla.org/moz/jssubscript-loader;1']
  42. .getService(Components.interfaces.mozIJSSubScriptLoader)
  43.     .loadSubScript('chrome://sameplace/content/overlay_impl.js', sameplace);
  44.