forked from 0x2620/oxjs
minor changes in OxJS
This commit is contained in:
parent
66934d22a9
commit
f76ee0cf36
6 changed files with 16 additions and 6 deletions
|
|
@ -449,8 +449,10 @@ Ox.Map = function(options, self) {
|
|||
delete window.googleCallback;
|
||||
initMap();
|
||||
};
|
||||
$.getScript(document.location.protocol
|
||||
+ '//maps.google.com/maps/api/js?callback=googleCallback&sensor=false');
|
||||
$.getScript(
|
||||
document.location.protocol
|
||||
+ '//maps.google.com/maps/api/js?callback=googleCallback&sensor=false'
|
||||
);
|
||||
} else {
|
||||
(function interval() {
|
||||
window.google ? initMap() : setTimeout(interval, 100);
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ Ox.SmallVideoTimelineImage = function(options, self) {
|
|||
Ox.loop(left, right, function(x) {
|
||||
Ox.loop(top, bottom, function(y) {
|
||||
var alpha = self.options.type == 'player' ? 128
|
||||
: (y == top || y == bottom - 1) ? 255 : 64,
|
||||
: (y == top || y == bottom - 1) ? 255 : 255,
|
||||
color = Ox.Theme[self.theme].timeline[
|
||||
self.options.editing ? 'editing'
|
||||
: self.options.selected ? 'selected' : 'default'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue