]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Smaller colour preview boxes
[rails.git] / app / assets / javascripts / index.js
index 00e6a9d32a0d815b05676e0428540fc6a82ac16a..b6fdaea398b4c5718d105c396efb2bc2d539b115 100644 (file)
@@ -241,9 +241,7 @@ $(document).ready(function () {
 
   function remoteEditHandler(bbox, object) {
     var loaded = false,
 
   function remoteEditHandler(bbox, object) {
     var loaded = false,
-        url = document.location.protocol === "https:" ?
-        "https://127.0.0.1:8112/load_and_zoom?" :
-        "http://127.0.0.1:8111/load_and_zoom?",
+        url = "http://127.0.0.1:8111/load_and_zoom?",
         query = {
           left: bbox.getWest() - 0.0001,
           top: bbox.getNorth() + 0.0001,
         query = {
           left: bbox.getWest() - 0.0001,
           top: bbox.getNorth() + 0.0001,
@@ -336,6 +334,11 @@ $(document).ready(function () {
           });
         }
       });
           });
         }
       });
+      
+      $('.colour-preview-box').each(function (index, value) {
+        console.log($(this));
+        $(this).css("background-color", $(this).data("colour"));
+      });
     }
 
     page.unload = function() {
     }
 
     page.unload = function() {