Changeset 168
- Timestamp:
- 04/26/07 00:59:39 (19 months ago)
- Location:
- trunk/twitternotifier
- Files:
-
- 2 modified
-
Makefile (modified) (1 diff)
-
content/twitternotifier.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/twitternotifier/Makefile
r137 r168 4 4 5 5 build: 6 sh ./build.sh 7 8 update: 6 9 find . -name ".DS_Store" | xargs rm -f 7 10 sh ./build.sh 8 11 perl -p -e 's/\$$VERSION\$$/$(VERSION)/' update.rdf > $(APP_NAME).rdf 9 scp -i ~/.ssh/tom.naan.net.auto_exec \ 10 $(APP_NAME).xpi $(APP_NAME).rdf www.naan.net:/var/www/html/twitter/ 12 scp $(APP_NAME).xpi $(APP_NAME).rdf www.naan.net:/var/www/html/twitter/ 11 13 rm $(APP_NAME).xpi $(APP_NAME).rdf 12 14 -
trunk/twitternotifier/content/twitternotifier.js
r167 r168 169 169 // 170 170 var input = document.getElementById("twitternotifier-message-input"); 171 this._savedText = input.value; 172 this._inputDisabled = input.disabled; 171 if (input) { 172 this._savedText = input.value; 173 this._inputDisabled = input.disabled; 174 } 173 175 174 176 var z = window.document.defaultView.getComputedStyle(elm, "").getPropertyValue("z-index"); … … 180 182 //elm.style.zIndex=parseInt(z) + 1; 181 183 } 182 catch (e) { 183 dump("Tab change fail\n"); 184 } 184 catch (e) {} 185 185 186 setTimeout("gTwitterNotifier.onTimeoutTabChange()", 100); 186 187 },
