Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PyBusMap
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
PyBusMap
Commits
1a8be897
Commit
1a8be897
authored
8 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
js cleanup
parent
8992e991
No related branches found
No related tags found
1 merge request
!1
Implemented Embed-code generator interface
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bower.json
+1
-1
1 addition, 1 deletion
bower.json
static/js/embed.js
+7
-7
7 additions, 7 deletions
static/js/embed.js
static/js/map.js
+8
-1
8 additions, 1 deletion
static/js/map.js
with
16 additions
and
9 deletions
bower.json
+
1
−
1
View file @
1a8be897
...
...
@@ -15,7 +15,7 @@
],
"dependencies"
:
{
"leaflet"
:
"~0.7.7"
,
"jquery"
:
"~2.
1.4
"
,
"jquery"
:
"~2.
2.3
"
,
"leaflet.markercluster"
:
"~0.4.0"
,
"leaflet-marker-rotate"
:
"https://git.xhost.io/anton/leaflet-marker-rotate.git"
,
"Leaflet.label"
:
"~0.2.1"
...
...
This diff is collapsed.
Click to expand it.
static/js/embed.js
+
7
−
7
View file @
1a8be897
...
...
@@ -47,28 +47,28 @@ BusMap.Embed = function(opts) {
var
bindEventHandlers
=
function
()
{
// OnChange event handlers for Embed Options form
$
(
"
#embed-height
"
).
change
(
function
()
{
$
(
"
#embed-height
"
).
on
(
'
change
'
,
function
()
{
if
(
$
(
this
).
val
()
!=
""
)
{
$
(
"
#embed-preview iframe
"
).
attr
(
'
height
'
,
$
(
this
).
val
()
+
"
px
"
);
}
else
{
$
(
"
#embed-preview iframe
"
).
removeAttr
(
'
height
'
);
}
});
$
(
"
#embed-width
"
).
change
(
function
()
{
$
(
"
#embed-width
"
).
on
(
'
change
'
,
function
()
{
if
(
$
(
this
).
val
()
!=
""
)
{
$
(
"
#embed-preview iframe
"
).
attr
(
'
width
'
,
$
(
this
).
val
()
+
"
px
"
);
}
else
{
$
(
"
#embed-preview iframe
"
).
removeAttr
(
'
width
'
);
}
});
$
(
"
#embed-responsive
"
).
change
(
function
()
{
$
(
"
#embed-responsive
"
).
on
(
'
change
'
,
function
()
{
if
(
$
(
this
).
prop
(
"
checked
"
))
{
$
(
"
#embed-preview iframe
"
).
css
(
'
max-width
'
,
'
100%
'
);
}
else
{
$
(
"
#embed-preview iframe
"
).
css
(
'
max-width
'
,
''
);
}
});
$
(
"
#embed-mode
"
).
change
(
function
()
{
$
(
"
#embed-mode
"
).
on
(
'
change
'
,
function
()
{
embedVars
[
'
mode
'
]
=
$
(
this
).
val
();
updateEmbedUrl
();
if
(
$
(
this
).
val
()
==
"
m
"
)
{
...
...
@@ -77,7 +77,7 @@ BusMap.Embed = function(opts) {
$
(
"
label[for=embed-popup]
"
).
hide
();
}
});
$
(
"
#embed-stop
"
).
change
(
function
()
{
$
(
"
#embed-stop
"
).
on
(
'
change
'
,
function
()
{
if
(
$
(
this
).
val
())
{
embedVars
[
'
stop
'
]
=
$
(
this
).
val
();
}
else
{
...
...
@@ -85,7 +85,7 @@ BusMap.Embed = function(opts) {
}
updateEmbedUrl
();
});
$
(
"
#embed-popup
"
).
change
(
function
()
{
$
(
"
#embed-popup
"
).
on
(
'
change
'
,
function
()
{
if
(
$
(
this
).
prop
(
"
checked
"
))
{
embedVars
[
'
popup
'
]
=
true
;
}
else
{
...
...
@@ -94,7 +94,7 @@ BusMap.Embed = function(opts) {
updateEmbedUrl
();
});
// After ANY field is updated...
$
(
"
#embed-form :input
"
).
change
(
function
()
{
$
(
"
#embed-form :input
"
).
on
(
'
change
'
,
function
()
{
updateEmbedCode
();
});
// Hilight code for easy copying on click, key, focus.
...
...
This diff is collapsed.
Click to expand it.
static/js/map.js
+
8
−
1
View file @
1a8be897
...
...
@@ -454,8 +454,15 @@ BusMap.Map = function(opts) {
var
modalName
=
$
(
"
.modal
"
).
attr
(
'
id
'
).
split
(
'
-
'
)[
1
];
view
+=
"
;
"
+
modalName
;
}
if
(
window
.
location
.
hash
==
"
#
"
+
view
)
{
// Bail out if old hash == new hash.
// Otherwise, we'll set hashChangedProgrammatically, but
// the change handler will never fire, and it won't be unset.
// TODO: unfuck this bad design before it breaks something else
return
;
}
that
.
hashChangedProgrammatically
=
true
;
// avoid infinite loop!
window
.
location
.
replace
(
"
#
"
+
view
);
window
.
location
.
href
.
replace
(
window
.
location
.
hash
,
"
#
"
+
view
);
}
init
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment