This commit is contained in:
Sam Thorogood 2015-10-28 22:39:56 +11:00
Родитель 3a4edf51b6
Коммит 5b5c20a111
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -484,11 +484,11 @@
dialogPolyfill['forceRegisterDialog'] = dialogPolyfill.forceRegisterDialog;
dialogPolyfill['registerDialog'] = dialogPolyfill.registerDialog;
if ( typeof module === 'object' && typeof module.exports === 'object' ) {
if (typeof module === 'object' && typeof module['exports'] === 'object') {
// CommonJS support
module.exports = dialogPolyfill;
} else if (typeof define === 'function' && define.amd) {
module['exports'] = dialogPolyfill;
} else if (typeof define === 'function' && 'amd' in define) {
// AMD support
define(function () { return dialogPolyfill; });
define(function() { return dialogPolyfill; });
}
})();