~ubuntu-branches/ubuntu/gutsy/firefox/gutsy

« back to all changes in this revision

Viewing changes to xpfe/global/resources/content/bindings/progressmeter.xml

  • Committer: Bazaar Package Importer
  • Author(s): Ian Jackson
  • Date: 2006-10-10 18:49:32 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20061010184932-da75izt7y0e59afq
Tags: 1.99+2.0rc2+dfsg-0ubuntu1
* New upstream version 2.0rc2.
* Fix/workaround for epiphany GtkSocket lifetype crash:
  apply patch id=241087 from Mozilla Bugzilla #241535 to fix LP #63814.
* Change application name to `Firefox', as requested by mdz.
  Files changed:
    - browser/locales/en-US/chrome/branding/brand.dtd
    - browser/locales/en-US/chrome/branding/brand.properties;
  New values:
    - brandShortName and brandFullName: `Bon Echo' => `Firefox'
    - vendorShortName: `Mozilla' => `Ubuntu'
* Make preferences dialogue fit again (bah!).

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
          var position = -1;
71
71
          var interval = setInterval(function nextStep() {
72
72
            try {
 
73
              var width = stack.boxObject.width >> 2;
73
74
              spacer.height = stack.boxObject.height;
74
 
              spacer.width = stack.boxObject.width >> 2;
75
 
              spacer.left = spacer.width * position;
76
 
              position += 30 / (stack.boxObject.width + 600);
 
75
              spacer.width = width;
 
76
              spacer.left = width * position;
 
77
              position += 15 / (width + 150);
77
78
              if (position >= 4)
78
79
                position = -1;
79
80
            } catch (e) {
80
81
              clearInterval(interval);
81
82
            }
82
 
          }, 10);
 
83
          }, 20);
83
84
        ]]></body>
84
85
      </method>
85
86