Fixed mac instant apply bug
authorKristian Kræmmer Nielsen <jkkn@jkkn.dk>
Thu, 20 Dec 2007 00:51:49 +0000 (01:51 +0100)
committerKristian Kræmmer Nielsen <jkkn@jkkn.dk>
Thu, 20 Dec 2007 00:51:49 +0000 (01:51 +0100)
content/options.js
version

index dc7e658df276ad59bca29d0a8b73d938371b75a5..bc6577ce4bd6122f7049e4074210b641d5c254d0 100755 (executable)
@@ -67,6 +67,7 @@ var TV2Options = {
             newItem.setAttribute('label', add);
             php5sites.insertBefore(newItem, insertBefore);
             php5sites.selectedItem = newItem;
+            this.update();
             php5sites.focus();
         }
     },
@@ -74,6 +75,7 @@ var TV2Options = {
     php5sitesRemove: function(obj) {
         var php5sites = document.getElementById('php5sites');
         php5sites.removeChild(php5sites.selectedItem);
+        this.update();
         php5sites.focus();
     },
     
@@ -87,6 +89,7 @@ var TV2Options = {
         }
         php5sites.disabled = useDefaults;
         document.getElementById('php5sites_add').disabled = useDefaults;
+        this.update();
     },
     
     save: function() {
diff --git a/version b/version
index 8adc70fdd9d6a086cc636d251adf0c7a7bca8319..6f4eebdf6f68fc72411793cdb19e3f1715b117f3 100644 (file)
--- a/version
+++ b/version
@@ -1 +1 @@
-0.8.0
\ No newline at end of file
+0.8.1