Skip to content

Commit

Permalink
TBEのない環境でツールバーの状態がおかしくなっていたのを修正
Browse files Browse the repository at this point in the history
git-svn-id: http://www.cozmixng.org/repos/piro/splitbrowser/trunk@43 599a83e7-65a4-db11-8015-0010dcdd6dc2
  • Loading branch information
piro committed Jan 19, 2007
1 parent 6133208 commit eb8d5b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/splitbrowser/splitbrowser.xml
Expand Up @@ -573,8 +573,8 @@
var t = null;
var isBusy = b.mIsBusy;
if (b.localName == 'tabbrowser') {
t = this.browser.selectedTab;
isBusy = t.getAttribute('busy') != 'true';
t = b.selectedTab;
isBusy = t.getAttribute('busy') == 'true';
}
if (!isBusy) {
this.stopButton.setAttribute('disabled', true);
Expand Down

0 comments on commit eb8d5b1

Please sign in to comment.