home *** CD-ROM | disk | FTP | other *** search
/ Mundo do CD-ROM 119 / cdrom119.iso / internet / gsync / google-browsersync.xpi / chrome / chromeFiles / content / updating.xul < prev    next >
Encoding:
Extensible Markup Language  |  2006-06-07  |  765 b   |  21 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3.  
  4. <dialog
  5.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  6.   id="clb-syncing" title="Please Wait" orient="vertical" buttons="cancel"
  7.   onload="CLB_updating.handleFormLoad()">
  8.  
  9.   <label style="font-weight:bold; margin-bottom:0.5em" 
  10.     value="Google Browser Sync is saving your changes"/>
  11.   <progressmeter id="clb-progress" mode="undetermined" />
  12.   <label id="clb-status" value="Uploading..."/>
  13.  
  14.   <script type="application/x-javascript">
  15.     var CLB_updating = 
  16.       new (Components.classes["@google.com/browserstate/app-context;1"]
  17.                      .getService().wrappedJSObject)
  18.                      .CLB_UpdatingForm(window);
  19.   </script>
  20.  
  21. </dialog>