Skip to content
This repository has been archived by the owner on Jul 9, 2019. It is now read-only.

Commit

Permalink
1. _openDialog() bug fix: improve check when testing for open dialog …
Browse files Browse the repository at this point in the history
…windows.

2. Updated compatibility to Firefox 12.*.
3. Bumped to version 1.0.5.
  • Loading branch information
yuhui committed Mar 4, 2012
1 parent b6208f8 commit c015f3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion chrome/content/about/about.xul
Expand Up @@ -21,7 +21,7 @@
<spacer flex="1"/>
<text value="&about.version.text;"/>
<text value=" "/>
<text value="1.0.4-20120116"/>
<text value="1.0.5-20120304"/>
<spacer flex="1"/>
</hbox>
</vbox>
Expand Down
2 changes: 1 addition & 1 deletion chrome/content/ui.js
Expand Up @@ -33,7 +33,7 @@ PutIO.UI = {
if (options.length > 0) {
options += ",";
}
if (null === this._dialog || this._dialog.closed) {
if (null === this._dialog || typeof(this._dialog) === "undefined" || this._dialog.closed) {
this._dialog = window.openDialog(
url,
name,
Expand Down
4 changes: 2 additions & 2 deletions install.rdf
Expand Up @@ -5,11 +5,11 @@
<RDF:Description RDF:about="rdf:#$AdXBi"
em:id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
em:minVersion="4.0"
em:maxVersion="11.*" />
em:maxVersion="12.*" />
<RDF:Description RDF:about="urn:mozilla:install-manifest"
em:id="putio@yuhui.bc"
em:name="Put.io"
em:version="1.0.4-20120116"
em:version="1.0.5-20120304"
em:creator="Yuhui BC"
em:type="2"
em:description="Download links to Put.io via the contextual menu"
Expand Down

0 comments on commit c015f3c

Please sign in to comment.