Fix map key tooltip
This commit is contained in:
parent
fb6b107469
commit
cbb8772685
2 changed files with 32 additions and 1 deletions
|
@ -63,7 +63,7 @@ L.OSM.key = function (options) {
|
|||
var disabled = ["mapnik", "cyclemap"].indexOf(map.getMapBaseLayerId()) === -1;
|
||||
button
|
||||
.toggleClass("disabled", disabled)
|
||||
.attr("data-original-title",
|
||||
.attr("data-bs-original-title",
|
||||
I18n.t(disabled ?
|
||||
"javascripts.key.tooltip_disabled" :
|
||||
"javascripts.key.tooltip"));
|
||||
|
|
|
@ -6,4 +6,35 @@ class SiteTest < ApplicationSystemTestCase
|
|||
|
||||
assert_selector "h1", :text => "OpenStreetMap"
|
||||
end
|
||||
|
||||
test "tooltip shows for Layers button" do
|
||||
visit "/"
|
||||
|
||||
assert_no_selector ".tooltip"
|
||||
button = find ".control-layers .control-button"
|
||||
button.hover
|
||||
assert_selector ".tooltip", :text => "Layers"
|
||||
end
|
||||
|
||||
test "tooltip shows for Map Key button on Standard layer" do
|
||||
visit "/"
|
||||
|
||||
assert_no_selector ".tooltip"
|
||||
button = find ".control-key .control-button"
|
||||
button.hover
|
||||
tooltip = find ".tooltip"
|
||||
tooltip.assert_text "Map Key"
|
||||
tooltip.assert_no_text "not available"
|
||||
end
|
||||
|
||||
test "tooltip shows for Map Key button on a layer without a key provided" do
|
||||
visit "/#layers=Y" # assumes that CyclOSM layer has no map key
|
||||
|
||||
assert_no_selector ".tooltip"
|
||||
button = find ".control-key .control-button"
|
||||
button.hover
|
||||
tooltip = find ".tooltip"
|
||||
tooltip.assert_text "Map Key"
|
||||
tooltip.assert_text "not available"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue