Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stwkit
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
stw
stwkit
Commits
0fd6e5be
Commit
0fd6e5be
authored
Nov 30, 2017
by
Tomas Pettersson
🏸
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
made linebutton default if only available
parent
872b1259
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
src/components/cards.js
src/components/cards.js
+2
-0
src/components/cards.js.map
src/components/cards.js.map
+1
-1
src/components/cards.ts
src/components/cards.ts
+2
-0
No files found.
src/components/cards.js
View file @
0fd6e5be
...
@@ -364,6 +364,8 @@ var STWkit;
...
@@ -364,6 +364,8 @@ var STWkit;
self
.
pointButton
.
click
();
self
.
pointButton
.
click
();
else
if
(
document
.
body
.
contains
(
self
.
circleButton
)
&&
self
.
circleButton
.
style
.
display
!=
'
none
'
)
else
if
(
document
.
body
.
contains
(
self
.
circleButton
)
&&
self
.
circleButton
.
style
.
display
!=
'
none
'
)
self
.
circleButton
.
click
();
self
.
circleButton
.
click
();
else
if
(
document
.
body
.
contains
(
self
.
lineButton
)
&&
self
.
lineButton
.
style
.
display
!=
'
none
'
)
self
.
lineButton
.
click
();
};
};
LocationCard
.
prototype
.
populateCard
=
function
(
geojson
)
{
LocationCard
.
prototype
.
populateCard
=
function
(
geojson
)
{
var
self
=
this
;
var
self
=
this
;
...
...
src/components/cards.js.map
View file @
0fd6e5be
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/components/cards.ts
View file @
0fd6e5be
...
@@ -392,6 +392,8 @@ module STWkit {
...
@@ -392,6 +392,8 @@ module STWkit {
var
self
=
this
;
var
self
=
this
;
if
(
document
.
body
.
contains
(
self
.
pointButton
)
&&
self
.
pointButton
.
style
.
display
!=
'
none
'
)
self
.
pointButton
.
click
();
if
(
document
.
body
.
contains
(
self
.
pointButton
)
&&
self
.
pointButton
.
style
.
display
!=
'
none
'
)
self
.
pointButton
.
click
();
else
if
(
document
.
body
.
contains
(
self
.
circleButton
)
&&
self
.
circleButton
.
style
.
display
!=
'
none
'
)
self
.
circleButton
.
click
();
else
if
(
document
.
body
.
contains
(
self
.
circleButton
)
&&
self
.
circleButton
.
style
.
display
!=
'
none
'
)
self
.
circleButton
.
click
();
else
if
(
document
.
body
.
contains
(
self
.
lineButton
)
&&
self
.
lineButton
.
style
.
display
!=
'
none
'
)
self
.
lineButton
.
click
();
}
}
public
populateCard
(
geojson
)
{
public
populateCard
(
geojson
)
{
...
...
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