This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var UnitConversion = {}; | |
UnitConversion.convert = function(from, to, callback) { | |
jQuery.get('http://www.sabberworm.com/get_file/units/', {from: from, to: to}, callback); | |
}; | |
UnitConversion.conversionFinished = function(data, textStatus) { | |
if(data.indexOf('invalid') !== -1) { | |
displayMessage(data); | |
return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cache | |
error.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(videojs.Hls) { | |
videojs.Flash.isSupported = function() { | |
// Only support Flash if no HTML5 is available | |
return !videojs.Html5.isSupported(); | |
}; | |
videojs.Hls.isSupported = function() { | |
return videojs.Hls.supportsNativeHls; | |
}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! videojs-contrib-media-sources - v2.4.0 - 2015-11-16 | |
* Copyright (c) 2015 Brightcove; Licensed */ | |
/** | |
* mux.js | |
* | |
* Copyright (c) 2014 Brightcove | |
* All rights reserved. | |
* | |
* A lightweight readable stream implemention that handles event dispatching. | |
* Objects that inherit from streams should call init in their constructors. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! videojs-contrib-hls - v0.17.9 - 2015-11-16 | |
* Copyright (c) 2015 Brightcove; Licensed */ | |
(function(window, videojs, document, undefined) { | |
'use strict'; | |
var | |
// a fudge factor to apply to advertised playlist bitrates to account for | |
// temporary flucations in client bandwidth | |
bandwidthVariance = 1.1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.plist filter=xmlplist | |
# surprise! Quartz patches are plists, too! | |
*.qtz filter=xmlplist |