From dd7adc197f1761d2ed45f6505aa3bdbaba99b2b1 Mon Sep 17 00:00:00 2001 From: Brandon Casey Date: Thu, 15 Feb 2018 15:41:31 -0500 Subject: [PATCH] fix: expose version correctly (#51) --- src/plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin.js b/src/plugin.js index f492846d..76e1f75e 100644 --- a/src/plugin.js +++ b/src/plugin.js @@ -586,7 +586,7 @@ class VR extends Plugin { VR.prototype.setTimeout = Component.prototype.setTimeout; VR.prototype.clearTimeout = Component.prototype.clearTimeout; -VR.version = VERSION; +VR.VERSION = VERSION; videojs.registerPlugin('vr', VR); export default VR;