Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
accessibility-tools
accessible_gmaps
Commits
7101cd2c
Commit
7101cd2c
authored
May 10, 2016
by
Rebecca Byrd
Committed by
Elijah Byrd
May 10, 2016
Browse files
Minor CSS fix; fixed markers getting added in reverse order.
parent
97020b9e
Pipeline
#16668
skipped
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
accessible_gmaps.css
View file @
7101cd2c
...
...
@@ -59,7 +59,7 @@ div#zoom-base {
}
.map-bn
{
cursor
:
pointer
;
text-indent
:
-100em
;
text-indent
:
-100
00
em
;
border
:
none
;
width
:
100%
;
height
:
100%
;
...
...
@@ -138,7 +138,7 @@ span.accessibilityInfoClose {
background
:
url('icons/ic_close_black_24px.svg')
no-repeat
0px
0px
/
100%
100%
;
width
:
100%
;
height
:
100%
;
text-indent
:
-100em
;
text-indent
:
-100
00
em
;
position
:
absolute
;
right
:
0px
;
top
:
0px
;
...
...
accessible_gmaps.js
View file @
7101cd2c
...
...
@@ -77,7 +77,7 @@
// Create marker overlays
// We need a timeout - I'm not sure why. But the map bounds aren't caught up with us if we don't wait, and we need the map bounds set before we can position markers.
setTimeout
(
function
(){
for
(
var
i
=
0
;
i
<
accessible_gmaps
.
markers
.
length
;
i
++
){
for
(
var
i
=
accessible_gmaps
.
markers
.
length
-
1
;
i
>=
0
;
i
--
){
var
marker
=
accessible_gmaps
.
markers
[
i
];
accessible_gmaps
.
create_marker_div
(
marker
,
i
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment