]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/application.js
Scope map variable.
[rails.git] / app / assets / javascripts / application.js
index c9eddfb9cc6c2021fa132946c3427c5f58da1da8..247df1b8360f2eda5ee293cef1014336d63ae698 100644 (file)
@@ -129,9 +129,7 @@ function makeShortCode(map) {
     }
     for (i = 0; i < ((zoom + 8) % 3); ++i) str += "-";
 
-    /*
-     * Called to interlace the bits in x and y, making a Morton code.
-     */
+    // Called to interlace the bits in x and y, making a Morton code.
     function interlace(x, y) {
         x = (x | (x << 8)) & 0x00ff00ff;
         x = (x | (x << 4)) & 0x0f0f0f0f;