Compare commits
2 commits
9c9d3a8e2f
...
ffeee38d7d
| Author | SHA1 | Date | |
|---|---|---|---|
| ffeee38d7d | |||
| 48a3043a79 |
2 changed files with 4 additions and 0 deletions
|
|
@ -809,7 +809,10 @@ Ox.URL = function(options) {
|
|||
}
|
||||
|
||||
function parseURL(str, callback) {
|
||||
// remove facebook spam
|
||||
str = str.replace(/\?fbclid=[A-Za-z0-9_]+/, '')
|
||||
// fixme: removing trailing slash makes it impossible to search for '/'
|
||||
|
||||
var split = str.split('#'),
|
||||
parts = split.shift().replace(/(^\/|\/$)/g, '').split('/'),
|
||||
state = split.length && split[0].length
|
||||
|
|
|
|||
|
|
@ -402,6 +402,7 @@ Ox.VideoTimelinePlayer = function(options, self) {
|
|||
height: self.tileHeight,
|
||||
muted: self.options.muted,
|
||||
paused: self.options.paused,
|
||||
playbackRate: self.options.playbackRate,
|
||||
position: self.options.position,
|
||||
scaleToFill: true,
|
||||
video: self.options.video,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue