1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-04 06:48:49 +02:00

Made module.exports a string key so it'd be exported. fixes #1033

This commit is contained in:
Steve Heffernan 2014-02-24 21:19:06 -08:00
parent 9c282811e1
commit 333db84510

View File

@ -129,5 +129,5 @@ if (typeof define === 'function' && define['amd']) {
// checking that module is an object too because of umdjs/umd#35
} else if (typeof exports === 'object' && typeof module === 'object') {
module.exports = videojs;
module['exports'] = videojs;
}