]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/application.js
Escape fragment identifiers in wikipedia URLs
[rails.git] / app / assets / javascripts / application.js
index 132b69fc5e5600c1ed82340c3073b5565d4542de..354cfe66e788e79815a8fbba89c450042818f430 100644 (file)
@@ -24,7 +24,7 @@ var querystring = require('querystring-component');
  * Called as the user scrolls/zooms around to maniplate hrefs of the
  * view tab and various other links
  */
-function updateLinks(loc, zoom, layers, object) {
+window.updateLinks = function (loc, zoom, layers, object) {
   $(".geolink").each(function(index, link) {
     var href = link.href.split(/[?#]/)[0],
       args = querystring.parse(link.search.substring(1)),
@@ -65,15 +65,15 @@ function updateLinks(loc, zoom, layers, object) {
     .toggleClass('disabled', editDisabled)
     .attr('data-original-title', editDisabled ?
       I18n.t('javascripts.site.edit_disabled_tooltip') : '');
-}
+};
 
-function maximiseMap() {
+window.maximiseMap = function () {
   $("#content").addClass("maximised");
-}
+};
 
-function minimiseMap() {
+window.minimiseMap = function () {
   $("#content").removeClass("maximised");
-}
+};
 
 $(document).ready(function () {
   $("#menu-icon").on("click", function(e) {