Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
x3domlet
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Elphel
x3domlet
Commits
d4482e0b
Commit
d4482e0b
authored
Aug 29, 2017
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do not reset list position on click
parent
6e51419e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
index.js
js/index.js
+12
-3
No files found.
js/index.js
View file @
d4482e0b
...
...
@@ -3,6 +3,8 @@ var List;
var
markers
=
[];
var
BLOCK_MOVEEND
=
false
;
$
(
function
(){
//init();
...
...
@@ -209,6 +211,7 @@ function register_row_events(elem){
var
lat
=
$
(
$
(
item
).
find
(
"latitude"
)[
0
]).
text
();
var
lng
=
$
(
$
(
item
).
find
(
"longitude"
)[
0
]).
text
();
BLOCK_MOVEEND
=
true
;
map
.
panTo
(
new
L
.
LatLng
(
lat
,
lng
));
if
(
markers
[
index
]
!=
undefined
){
...
...
@@ -345,9 +348,15 @@ function init_maps(){
window
.
history
.
pushState
(
""
,
"x3d models index"
,
"?lat="
+
center
.
lat
+
"&lng="
+
center
.
lng
+
"&zoom="
+
zoom
);
$
(
"#model_table"
).
css
({
top
:
"0px"
});
if
(
!
BLOCK_MOVEEND
){
$
(
"#model_table"
).
css
({
top
:
"0px"
});
}
else
{
BLOCK_MOVEEND
=
false
;
}
});
...
...
Write
Preview
Markdown
is supported
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