vpaid-flash-client
Advanced tools
Comparing version
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | ||
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { | ||
//simple representation of the API | ||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } | ||
//simple representation of the API | ||
var IVPAIDAdUnit = (function () { | ||
var IVPAIDAdUnit = exports.IVPAIDAdUnit = function () { | ||
function IVPAIDAdUnit() { | ||
@@ -25,13 +25,14 @@ _classCallCheck(this, IVPAIDAdUnit); | ||
value: function handshakeVersion() { | ||
var playerVPAIDVersion = arguments[0] === undefined ? '2.0' : arguments[0]; | ||
var callback = arguments[1] === undefined ? undefined : arguments[1]; | ||
var playerVPAIDVersion = arguments.length <= 0 || arguments[0] === undefined ? '2.0' : arguments[0]; | ||
var callback = arguments.length <= 1 || arguments[1] === undefined ? undefined : arguments[1]; | ||
} | ||
//creativeData is an object to be consistent with VPAIDHTML | ||
}, { | ||
key: 'initAd', | ||
//creativeData is an object to be consistent with VPAIDHTML | ||
value: function initAd(width, height, viewMode, desiredBitrate) { | ||
var creativeData = arguments[4] === undefined ? { AdParameters: '' } : arguments[4]; | ||
var environmentVars = arguments[5] === undefined ? { flashVars: '' } : arguments[5]; | ||
var callback = arguments[6] === undefined ? undefined : arguments[6]; | ||
var creativeData = arguments.length <= 4 || arguments[4] === undefined ? { AdParameters: '' } : arguments[4]; | ||
var environmentVars = arguments.length <= 5 || arguments[5] === undefined ? { flashVars: '' } : arguments[5]; | ||
var callback = arguments.length <= 6 || arguments[6] === undefined ? undefined : arguments[6]; | ||
} | ||
@@ -41,3 +42,3 @@ }, { | ||
value: function resizeAd(width, height, viewMode) { | ||
var callback = arguments[3] === undefined ? undefined : arguments[3]; | ||
var callback = arguments.length <= 3 || arguments[3] === undefined ? undefined : arguments[3]; | ||
} | ||
@@ -47,3 +48,3 @@ }, { | ||
value: function startAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
} | ||
@@ -53,3 +54,3 @@ }, { | ||
value: function stopAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
} | ||
@@ -59,3 +60,3 @@ }, { | ||
value: function pauseAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
} | ||
@@ -65,3 +66,3 @@ }, { | ||
value: function resumeAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
} | ||
@@ -71,3 +72,3 @@ }, { | ||
value: function expandAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
} | ||
@@ -77,3 +78,3 @@ }, { | ||
value: function collapseAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
} | ||
@@ -83,8 +84,9 @@ }, { | ||
value: function skipAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
} | ||
//properties that will be treat as async methods | ||
}, { | ||
key: 'getAdLinear', | ||
//properties that will be treat as async methods | ||
value: function getAdLinear(callback) {} | ||
@@ -112,3 +114,3 @@ }, { | ||
value: function setAdVolume(soundVolume) { | ||
var callback = arguments[1] === undefined ? undefined : arguments[1]; | ||
var callback = arguments.length <= 1 || arguments[1] === undefined ? undefined : arguments[1]; | ||
} | ||
@@ -127,6 +129,4 @@ }, { | ||
return IVPAIDAdUnit; | ||
})(); | ||
}(); | ||
exports.IVPAIDAdUnit = IVPAIDAdUnit; | ||
Object.defineProperty(IVPAIDAdUnit, 'EVENTS', { | ||
@@ -146,14 +146,14 @@ writable: false, | ||
Object.defineProperty(exports, '__esModule', { | ||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
var _get = function get(_x15, _x16, _x17) { var _again = true; _function: while (_again) { var object = _x15, property = _x16, receiver = _x17; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x15 = parent; _x16 = property; _x17 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; | ||
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } | ||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } | ||
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) subClass.__proto__ = superClass; } | ||
var IVPAIDAdUnit = require('./IVPAIDAdUnit').IVPAIDAdUnit; | ||
@@ -164,24 +164,26 @@ var ALL_VPAID_METHODS = Object.getOwnPropertyNames(IVPAIDAdUnit.prototype).filter(function (property) { | ||
var VPAIDAdUnit = (function (_IVPAIDAdUnit) { | ||
var VPAIDAdUnit = exports.VPAIDAdUnit = function (_IVPAIDAdUnit) { | ||
_inherits(VPAIDAdUnit, _IVPAIDAdUnit); | ||
function VPAIDAdUnit(flash) { | ||
_classCallCheck(this, VPAIDAdUnit); | ||
_get(Object.getPrototypeOf(VPAIDAdUnit.prototype), 'constructor', this).call(this); | ||
this._destroyed = false; | ||
this._flash = flash; | ||
var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(VPAIDAdUnit).call(this)); | ||
_this._destroyed = false; | ||
_this._flash = flash; | ||
return _this; | ||
} | ||
_inherits(VPAIDAdUnit, _IVPAIDAdUnit); | ||
_createClass(VPAIDAdUnit, [{ | ||
key: '_destroy', | ||
value: function _destroy() { | ||
var _this = this; | ||
var _this2 = this; | ||
this._destroyed = true; | ||
ALL_VPAID_METHODS.forEach(function (methodName) { | ||
_this._flash.removeCallbackByMethodName(methodName); | ||
_this2._flash.removeCallbackByMethodName(methodName); | ||
}); | ||
IVPAIDAdUnit.EVENTS.forEach(function (event) { | ||
_this._flash.offEvent(event); | ||
_this2._flash.offEvent(event); | ||
}); | ||
@@ -206,9 +208,10 @@ | ||
} | ||
//VPAID interface | ||
}, { | ||
key: 'handshakeVersion', | ||
//VPAID interface | ||
value: function handshakeVersion() { | ||
var playerVPAIDVersion = arguments[0] === undefined ? '2.0' : arguments[0]; | ||
var callback = arguments[1] === undefined ? undefined : arguments[1]; | ||
var playerVPAIDVersion = arguments.length <= 0 || arguments[0] === undefined ? '2.0' : arguments[0]; | ||
var callback = arguments.length <= 1 || arguments[1] === undefined ? undefined : arguments[1]; | ||
@@ -220,5 +223,5 @@ this._flash.callFlashMethod('handshakeVersion', [playerVPAIDVersion], callback); | ||
value: function initAd(width, height, viewMode, desiredBitrate) { | ||
var creativeData = arguments[4] === undefined ? { AdParameters: '' } : arguments[4]; | ||
var environmentVars = arguments[5] === undefined ? { flashVars: '' } : arguments[5]; | ||
var callback = arguments[6] === undefined ? undefined : arguments[6]; | ||
var creativeData = arguments.length <= 4 || arguments[4] === undefined ? { AdParameters: '' } : arguments[4]; | ||
var environmentVars = arguments.length <= 5 || arguments[5] === undefined ? { flashVars: '' } : arguments[5]; | ||
var callback = arguments.length <= 6 || arguments[6] === undefined ? undefined : arguments[6]; | ||
@@ -235,3 +238,3 @@ //resize element that has the flash object | ||
value: function resizeAd(width, height, viewMode) { | ||
var callback = arguments[3] === undefined ? undefined : arguments[3]; | ||
var callback = arguments.length <= 3 || arguments[3] === undefined ? undefined : arguments[3]; | ||
@@ -247,3 +250,3 @@ //resize element that has the flash object | ||
value: function startAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
@@ -255,3 +258,3 @@ this._flash.callFlashMethod('startAd', [], callback); | ||
value: function stopAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
@@ -263,3 +266,3 @@ this._flash.callFlashMethod('stopAd', [], callback); | ||
value: function pauseAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
@@ -271,3 +274,3 @@ this._flash.callFlashMethod('pauseAd', [], callback); | ||
value: function resumeAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
@@ -279,3 +282,3 @@ this._flash.callFlashMethod('resumeAd', [], callback); | ||
value: function expandAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
@@ -287,3 +290,3 @@ this._flash.callFlashMethod('expandAd', [], callback); | ||
value: function collapseAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
@@ -295,10 +298,11 @@ this._flash.callFlashMethod('collapseAd', [], callback); | ||
value: function skipAd() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
this._flash.callFlashMethod('skipAd', [], callback); | ||
} | ||
//properties that will be treat as async methods | ||
}, { | ||
key: 'getAdLinear', | ||
//properties that will be treat as async methods | ||
value: function getAdLinear(callback) { | ||
@@ -340,3 +344,3 @@ this._flash.callFlashMethod('getAdLinear', [], callback); | ||
value: function setAdVolume(volume) { | ||
var callback = arguments[1] === undefined ? undefined : arguments[1]; | ||
var callback = arguments.length <= 1 || arguments[1] === undefined ? undefined : arguments[1]; | ||
@@ -363,12 +367,10 @@ this._flash.callFlashMethod('setAdVolume', [volume], callback); | ||
return VPAIDAdUnit; | ||
})(IVPAIDAdUnit); | ||
}(IVPAIDAdUnit); | ||
exports.VPAIDAdUnit = VPAIDAdUnit; | ||
},{"./IVPAIDAdUnit":1}],3:[function(require,module,exports){ | ||
'use strict'; | ||
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); | ||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
@@ -383,2 +385,3 @@ var JSFlashBridge = require('./jsFlashBridge').JSFlashBridge; | ||
var uniqueVPAID = require('./utils').unique('vpaid'); | ||
var createFlashTester = require('./flashTester.js').createFlashTester; | ||
@@ -388,10 +391,14 @@ var ERROR = 'error'; | ||
var VPAIDFLASHClient = (function () { | ||
var flashTester = { isSupported: function isSupported() { | ||
return true; | ||
} }; // if the runFlashTest is not run the flashTester will always return true | ||
var VPAIDFLASHClient = function () { | ||
function VPAIDFLASHClient(vpaidParentEl, callback) { | ||
var swfConfig = arguments[2] === undefined ? { data: 'VPAIDFlash.swf', width: 800, height: 400 } : arguments[2]; | ||
var swfConfig = arguments.length <= 2 || arguments[2] === undefined ? { data: 'VPAIDFlash.swf', width: 800, height: 400 } : arguments[2]; | ||
var _this = this; | ||
var params = arguments[3] === undefined ? { wmode: 'transparent', salign: 'tl', align: 'left', allowScriptAccess: 'always', scale: 'noScale', allowFullScreen: 'true', quality: 'high' } : arguments[3]; | ||
var vpaidOptions = arguments[4] === undefined ? { debug: false, timeout: 10000 } : arguments[4]; | ||
var params = arguments.length <= 3 || arguments[3] === undefined ? { wmode: 'transparent', salign: 'tl', align: 'left', allowScriptAccess: 'always', scale: 'noScale', allowFullScreen: 'true', quality: 'high' } : arguments[3]; | ||
var vpaidOptions = arguments.length <= 4 || arguments[4] === undefined ? { debug: false, timeout: 10000 } : arguments[4]; | ||
@@ -412,3 +419,3 @@ _classCallCheck(this, VPAIDFLASHClient); | ||
createElementWithID(vpaidParentEl, this._flashID); | ||
createElementWithID(vpaidParentEl, this._flashID, true); | ||
@@ -505,3 +512,3 @@ params.movie = swfConfig.data; | ||
value: function unloadAdUnit() { | ||
var callback = arguments[0] === undefined ? undefined : arguments[0]; | ||
var callback = arguments.length <= 0 || arguments[0] === undefined ? undefined : arguments[0]; | ||
@@ -528,7 +535,7 @@ $throwIfDestroyed.call(this); | ||
return VPAIDFLASHClient; | ||
})(); | ||
}(); | ||
setStaticProperty('isSupported', function () { | ||
return VPAIDFLASHClient.hasExternalDependencies() && swfobject.hasFlashPlayerVersion(FLASH_VERSION); | ||
}); | ||
return VPAIDFLASHClient.hasExternalDependencies() && swfobject.hasFlashPlayerVersion(FLASH_VERSION) && flashTester.isSupported(); | ||
}, true); | ||
@@ -539,5 +546,9 @@ setStaticProperty('hasExternalDependencies', function () { | ||
setStaticProperty('runFlashTest', function (swfConfig) { | ||
flashTester = createFlashTester(document.body, swfConfig); | ||
}); | ||
function $throwIfDestroyed() { | ||
if (this._destroyed) { | ||
throw new error('VPAIDFlashToJS is destroyed!'); | ||
throw new Error('VPAIDFlashToJS is destroyed!'); | ||
} | ||
@@ -554,4 +565,6 @@ } | ||
function setStaticProperty(propertyName, value) { | ||
var writable = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; | ||
Object.defineProperty(VPAIDFLASHClient, propertyName, { | ||
writable: false, | ||
writable: writable, | ||
configurable: false, | ||
@@ -562,16 +575,84 @@ value: value | ||
window.VPAIDFLASHClient = VPAIDFLASHClient; | ||
module.exports = VPAIDFLASHClient; | ||
},{"./VPAIDAdUnit":2,"./jsFlashBridge":4,"./utils":7}],4:[function(require,module,exports){ | ||
},{"./VPAIDAdUnit":2,"./flashTester.js":4,"./jsFlashBridge":5,"./utils":8}],4:[function(require,module,exports){ | ||
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { | ||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } | ||
var FLASH_TEST = 'vpaid_video_flash_tester'; | ||
var FLASH_TEST_EL = 'vpaid_video_flash_tester_el'; | ||
var JSFlashBridge = require('./jsFlashBridge').JSFlashBridge; | ||
var createElementWithID = require('./utils').createElementWithID; | ||
var MultipleValuesRegistry = require('./registry').MultipleValuesRegistry; | ||
var FlashTester = function () { | ||
function FlashTester(parent) { | ||
var _this = this; | ||
var swfConfig = arguments.length <= 1 || arguments[1] === undefined ? { data: 'VPAIDFlash.swf', width: 800, height: 400 } : arguments[1]; | ||
_classCallCheck(this, FlashTester); | ||
this.parentEl = createElementWithID(parent, FLASH_TEST_EL); // some browsers create global variables using the element id http://stackoverflow.com/questions/3434278/do-dom-tree-elements-with-ids-become-global-variables | ||
this.parentEl.style.display = 'none'; // hide test element, we need to test if the element being hidden will still work or not | ||
var params = {}; | ||
params.movie = swfConfig.data; | ||
params.FlashVars = 'flashid=' + FLASH_TEST_EL + '&handler=' + JSFlashBridge.VPAID_FLASH_HANDLER; | ||
this.el = swfobject.createSWF(swfConfig, params, FLASH_TEST_EL); | ||
this._handlers = new MultipleValuesRegistry(); | ||
this._isSupported = false; | ||
if (this.el) { | ||
this._flash = new JSFlashBridge(this.el, swfConfig.data, FLASH_TEST_EL, 400, 400, function () { | ||
var support = true; | ||
_this._isSupported = support; | ||
_this._handlers.get('change').forEach(function (callback) { | ||
setTimeout(function () { | ||
callback('change', support); | ||
}, 0); | ||
}); | ||
}); | ||
} | ||
} | ||
_createClass(FlashTester, [{ | ||
key: 'isSupported', | ||
value: function isSupported() { | ||
return this._isSupported; | ||
} | ||
}, { | ||
key: 'on', | ||
value: function on(eventName, callback) { | ||
this._handlers.add(eventName, callback); | ||
} | ||
}]); | ||
return FlashTester; | ||
}(); | ||
var createFlashTester = exports.createFlashTester = function createFlashTester(el, swfConfig) { | ||
if (!window[FLASH_TEST]) { | ||
window[FLASH_TEST] = new FlashTester(el, swfConfig); | ||
} | ||
return window[FLASH_TEST]; | ||
}; | ||
},{"./jsFlashBridge":5,"./registry":7,"./utils":8}],5:[function(require,module,exports){ | ||
'use strict'; | ||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
var unique = require('./utils').unique; | ||
@@ -586,3 +667,3 @@ var isPositiveInt = require('./utils').isPositiveInt; | ||
var JSFlashBridge = (function () { | ||
var JSFlashBridge = exports.JSFlashBridge = function () { | ||
function JSFlashBridge(el, flashURL, flashID, width, height, loadHandShake) { | ||
@@ -628,4 +709,4 @@ _classCallCheck(this, JSFlashBridge); | ||
value: function callFlashMethod(methodName) { | ||
var args = arguments[1] === undefined ? [] : arguments[1]; | ||
var callback = arguments[2] === undefined ? undefined : arguments[2]; | ||
var args = arguments.length <= 1 || arguments[1] === undefined ? [] : arguments[1]; | ||
var callback = arguments.length <= 2 || arguments[2] === undefined ? undefined : arguments[2]; | ||
@@ -718,6 +799,7 @@ var callbackID = ''; | ||
} | ||
//methods like properties specific to this implementation of VPAID | ||
}, { | ||
key: 'getSize', | ||
//methods like properties specific to this implementation of VPAID | ||
value: function getSize() { | ||
@@ -782,6 +864,4 @@ return { width: this._width, height: this._height }; | ||
return JSFlashBridge; | ||
})(); | ||
}(); | ||
exports.JSFlashBridge = JSFlashBridge; | ||
function $asyncCallback(callbackID, err, result) { | ||
@@ -829,3 +909,3 @@ var _this3 = this; | ||
},{"./jsFlashBridgeRegistry":5,"./registry":6,"./utils":7}],5:[function(require,module,exports){ | ||
},{"./jsFlashBridgeRegistry":6,"./registry":7,"./utils":8}],6:[function(require,module,exports){ | ||
'use strict'; | ||
@@ -863,14 +943,14 @@ | ||
},{"./registry":6}],6:[function(require,module,exports){ | ||
},{"./registry":7}],7:[function(require,module,exports){ | ||
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { | ||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } | ||
var MultipleValuesRegistry = (function () { | ||
var MultipleValuesRegistry = exports.MultipleValuesRegistry = function () { | ||
function MultipleValuesRegistry() { | ||
@@ -959,7 +1039,5 @@ _classCallCheck(this, MultipleValuesRegistry); | ||
return MultipleValuesRegistry; | ||
})(); | ||
}(); | ||
exports.MultipleValuesRegistry = MultipleValuesRegistry; | ||
var SingleValueRegistry = (function () { | ||
var SingleValueRegistry = exports.SingleValueRegistry = function () { | ||
function SingleValueRegistry() { | ||
@@ -1029,10 +1107,8 @@ _classCallCheck(this, SingleValueRegistry); | ||
return SingleValueRegistry; | ||
})(); | ||
}(); | ||
exports.SingleValueRegistry = SingleValueRegistry; | ||
},{}],7:[function(require,module,exports){ | ||
},{}],8:[function(require,module,exports){ | ||
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
@@ -1046,3 +1122,2 @@ }); | ||
exports.stringEndsWith = stringEndsWith; | ||
function unique(prefix) { | ||
@@ -1072,5 +1147,9 @@ var count = -1; | ||
function createElementWithID(parent, id) { | ||
var cleanContent = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; | ||
var nEl = document.createElement('div'); | ||
nEl.id = id; | ||
parent.innerHTML = ''; | ||
if (cleanContent) { | ||
parent.innerHTML = ''; | ||
} | ||
parent.appendChild(nEl); | ||
@@ -1084,3 +1163,3 @@ return nEl; | ||
var endsWith = (function () { | ||
var endsWith = function () { | ||
if (String.prototype.endsWith) return String.prototype.endsWith; | ||
@@ -1096,3 +1175,3 @@ return function endsWith(searchString, position) { | ||
}; | ||
})(); | ||
}(); | ||
@@ -1106,2 +1185,2 @@ function stringEndsWith(string, search) { | ||
//# sourceMappingURL=VPAIDFLASHClient.js.map | ||
//# sourceMappingURL=VPAIDFLASHClient.js.map |
{ | ||
"name": "VPAIDFLASHClient", | ||
"version": "0.1.9", | ||
"version": "0.1.10", | ||
"authors": [ | ||
@@ -5,0 +5,0 @@ "Luis Silva <luis.dasilva@mailonline.co.uk>" |
@@ -137,3 +137,3 @@ 'use strict'; | ||
return VPAIDFLASHClient.hasExternalDependencies() && swfobject.hasFlashPlayerVersion(FLASH_VERSION) && flashTester.isSupported(); | ||
}); | ||
}, true); | ||
@@ -161,5 +161,5 @@ setStaticProperty('hasExternalDependencies', () => { | ||
function setStaticProperty(propertyName, value) { | ||
function setStaticProperty(propertyName, value, writable = false) { | ||
Object.defineProperty(VPAIDFLASHClient, propertyName, { | ||
writable: false, | ||
writable: writable, | ||
configurable: false, | ||
@@ -166,0 +166,0 @@ value: value |
{ | ||
"name": "vpaid-flash-client", | ||
"version": "0.1.9", | ||
"version": "0.1.10", | ||
"author": "Luis da Silva <luis.dasilva@mailonline.co.uk>", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/MailOnline/VPAIDFLASHClient", |
Sorry, the diff of this file is not supported yet
407024
1.52%3000
2.11%