X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/98cd01c40dde8ddf41d9f2c50329004840aa9856..fd0ed54b16d25ccee6aee86a9b8cf3ccad5baf77:/app/assets/javascripts/leaflet.share.js diff --git a/app/assets/javascripts/leaflet.share.js b/app/assets/javascripts/leaflet.share.js index a32dfc20b..d4c829532 100644 --- a/app/assets/javascripts/leaflet.share.js +++ b/app/assets/javascripts/leaflet.share.js @@ -10,10 +10,10 @@ L.OSM.share = function (options) { var $container = $('
') .attr('class', 'control-share'); - $('') + var button = $('') .attr('class', 'control-button') .attr('href', '#') - .attr('title', 'Share') + .attr('title', I18n.t('javascripts.share.title')) .html('') .on('click', toggle) .appendTo($container); @@ -25,10 +25,9 @@ L.OSM.share = function (options) { .attr('class', 'sidebar_heading') .appendTo($ui) .append( - $('') + $('') .text(I18n.t('javascripts.close')) - .attr('class', 'sidebar_close') - .attr('href', '#') + .attr('class', 'icon close') .bind('click', toggle)) .append( $('

') @@ -64,23 +63,31 @@ L.OSM.share = function (options) { $('
') .attr('class', 'share-tabs') .appendTo($form) - .append($('') .attr('class', 'active') .attr('for', 'long_input') + .attr('id', 'long_link') .text(I18n.t('javascripts.share.long_link'))) - .append($('') .attr('for', 'short_input') + .attr('id', 'short_link') .text(I18n.t('javascripts.share.short_link'))) - .append($('') .attr('for', 'embed_html') + .attr('href', '#') .text(I18n.t('javascripts.share.embed'))) - .on('click', 'label', function() { + .on('click', 'a', function(e) { + e.preventDefault(); var id = '#' + $(this).attr('for'); - $linkSection.find('.share-tabs label') + $linkSection.find('.share-tabs a') .removeClass('active'); $(this).addClass('active'); - $linkSection.find('.share-tab').hide(); - $linkSection.find('.share-tab:has(' + id + ')').show(); + $linkSection.find('.share-tab') + .hide(); + $linkSection.find('.share-tab:has(' + id + ')') + .show() + .find('input, textarea') + .select(); }); $('
') @@ -90,12 +97,7 @@ L.OSM.share = function (options) { .append($('') .attr('id', 'long_input') .attr('type', 'text') - .on('click', select)) - .append($('') - .attr('id', 'long_link') - .on('click', function() { return false; }) - .append($('') - .attr('class', 'icon link'))); + .on('click', select)); $('
') .attr('class', 'form-row share-tab') @@ -103,12 +105,7 @@ L.OSM.share = function (options) { .append($('') .attr('id', 'short_input') .attr('type', 'text') - .on('click', select)) - .append($('') - .attr('id', 'short_link') - .on('click', function() { return false; }) - .append($('') - .attr('class', 'icon link'))); + .on('click', select)); $('
') .attr('class', 'form-row share-tab') @@ -157,7 +154,6 @@ L.OSM.share = function (options) { .appendTo($form) .append( $('