Skip to content

Instantly share code, notes, and snippets.

View bpartridge83's full-sized avatar

Brian Partridge bpartridge83

View GitHub Profile
@bpartridge83
bpartridge83 / videojs-postmessage.js
Created June 22, 2020 15:56 — forked from brgaulin/videojs-postmessage.js
Video.js Window Postmessage
import videojs from 'video.js';
const throttle = (func, limit) => {
let inThrottle
return function () {
const args = arguments
const context = this
if (!inThrottle) {
func.apply(context, args)