Changeset 615
- Timestamp:
- 01/19/08 09:46:48 (11 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/jhs1/chrome/chromeFiles/content/browser.js
r609 r615 153 153 // Show the greasemonkey install banner if we are navigating to a .user.js 154 154 // file in a top-level tab. 155 if (href.match(/\.user\.js$/) && safeWin == safeWin.top) { 155 if (href.match(/\.user\.js$/) && safeWin === safeWin.top && 156 !safeWin.document.contentType.match(/(x|ht)ml/i)) { 156 157 var browser = this.tabBrowser.getBrowserForDocument(safeWin.document); 157 158 this.showInstallBanner(browser);
