Compare commits

..

No commits in common. "ffeee38d7d263727e95c151e317778399a1f6922" and "9c9d3a8e2ff5802523b8606c8c600af678bcd6ac" have entirely different histories.

2 changed files with 0 additions and 4 deletions

View file

@ -809,10 +809,7 @@ Ox.URL = function(options) {
} }
function parseURL(str, callback) { 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 '/' // fixme: removing trailing slash makes it impossible to search for '/'
var split = str.split('#'), var split = str.split('#'),
parts = split.shift().replace(/(^\/|\/$)/g, '').split('/'), parts = split.shift().replace(/(^\/|\/$)/g, '').split('/'),
state = split.length && split[0].length state = split.length && split[0].length

View file

@ -402,7 +402,6 @@ Ox.VideoTimelinePlayer = function(options, self) {
height: self.tileHeight, height: self.tileHeight,
muted: self.options.muted, muted: self.options.muted,
paused: self.options.paused, paused: self.options.paused,
playbackRate: self.options.playbackRate,
position: self.options.position, position: self.options.position,
scaleToFill: true, scaleToFill: true,
video: self.options.video, video: self.options.video,