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
2ed3c389
Commit
2ed3c389
authored
Oct 05, 2017
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ctrl+click
parent
fae3c7f5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
ui_extra_models.js
js/ui_extra_models.js
+12
-7
No files found.
js/ui_extra_models.js
View file @
2ed3c389
...
@@ -947,7 +947,10 @@ MPRMarker.prototype.init = function(){
...
@@ -947,7 +947,10 @@ MPRMarker.prototype.init = function(){
$
(
this
.
target
).
append
(
html
);
$
(
this
.
target
).
append
(
html
);
html
.
find
(
"shape"
).
on
(
'click'
,
function
(){
html
.
find
(
"shape"
).
on
(
'click'
,
function
(
e
){
if
(
Scene
.
_ctrlKey
){
var
uid
=
$
(
this
).
attr
(
"uid"
);
var
uid
=
$
(
this
).
attr
(
"uid"
);
$
(
".mprmarker[uid="
+
uid
+
"]"
).
each
(
function
(){
$
(
".mprmarker[uid="
+
uid
+
"]"
).
each
(
function
(){
$
(
this
).
parent
().
parent
().
parent
().
remove
();
$
(
this
).
parent
().
parent
().
parent
().
remove
();
...
@@ -956,6 +959,8 @@ MPRMarker.prototype.init = function(){
...
@@ -956,6 +959,8 @@ MPRMarker.prototype.init = function(){
// remove from Data.mpr.markers
// remove from Data.mpr.markers
mpr_marker_remove_by_uid
(
uid
);
mpr_marker_remove_by_uid
(
uid
);
}
});
});
}
}
...
...
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