Put link next to input and make it non-navigable

This commit is contained in:
John Firebaugh 2013-07-30 14:02:34 -07:00
parent f1a6755060
commit a3d69ee264
2 changed files with 17 additions and 10 deletions

View file

@ -67,14 +67,15 @@ L.OSM.share = function (options) {
.append($('<label>')
.attr('for', 'long_input')
.text(I18n.t('javascripts.share.long_link')))
.append($('<a>')
.attr('id', 'long_link')
.append($('<span>')
.attr('class', 'icon link')))
.append($('<input>')
.attr('id', 'long_input')
.attr('type', 'text')
.on('click', select));
.on('click', select))
.append($('<a>')
.attr('id', 'long_link')
.on('click', function() { return false; })
.append($('<span>')
.attr('class', 'icon link')));
$('<div>')
.attr('class', 'form-row')
@ -82,14 +83,15 @@ L.OSM.share = function (options) {
.append($('<label>')
.attr('for', 'short_input')
.text(I18n.t('javascripts.share.short_link')))
.append($('<a>')
.attr('id', 'short_link')
.append($('<span>')
.attr('class', 'icon link')))
.append($('<input>')
.attr('id', 'short_input')
.attr('type', 'text')
.on('click', select));
.on('click', select))
.append($('<a>')
.attr('id', 'short_link')
.on('click', function() { return false; })
.append($('<span>')
.attr('class', 'icon link')));
// Embed

View file

@ -638,6 +638,11 @@ a.donate {
.share-ui {
.share-link {
#long_input,
#short_input {
width: 190px;
}
a {
margin-left: 5px;
}