@@ -844,10 +844,6 @@ this.createjs = this.createjs || {};
844844 }
845845 var p = createjs . extend ( Loader , createjs . AbstractLoader ) ;
846846
847- // TODO: deprecated
848- // p.initialize = function() {}; // searchable for devs wondering where it is. REMOVED. See docs for details.
849-
850-
851847// Static Properties
852848 var s = Loader ;
853849 /**
@@ -979,10 +975,6 @@ this.createjs = this.createjs || {};
979975 } ;
980976 var p = createjs . extend ( FlashAudioSoundInstance , createjs . AbstractSoundInstance ) ;
981977
982- // TODO: deprecated
983- // p.initialize = function() {}; // searchable for devs wondering where it is. REMOVED. See docs for details.
984-
985-
986978// Static Propeties
987979 var s = FlashAudioSoundInstance ;
988980 /**
@@ -1060,13 +1052,13 @@ this.createjs = this.createjs || {};
10601052 p . _beginPlaying = function ( playProps ) {
10611053 if ( s . _flash == null ) { return false ; }
10621054
1063- this . setPosition ( playProps . offset ) ;
1064- this . setLoop ( playProps . loop ) ;
1065- this . setVolume ( playProps . volume ) ;
1066- this . setPan ( playProps . pan ) ;
1055+ this . position = playProps . offset ;
1056+ this . loop = playProps . loop ;
1057+ this . volume = playProps . volume ;
1058+ this . pan = playProps . pan ;
10671059 if ( playProps . startTime != null ) {
1068- this . setStartTime ( playProps . startTime ) ;
1069- this . setDuration ( playProps . duration ) ;
1060+ this . startTime = playProps . startTime ;
1061+ this . duration = playProps . duration ;
10701062 }
10711063 this . _paused = false ;
10721064
@@ -1287,10 +1279,6 @@ this.createjs = this.createjs || {};
12871279 var p = createjs . extend ( FlashAudioPlugin , createjs . AbstractPlugin ) ;
12881280 var s = FlashAudioPlugin ;
12891281
1290- // TODO: deprecated
1291- // p.initialize = function() {}; // searchable for devs wondering where it is. REMOVED. See docs for details.
1292-
1293-
12941282// Static properties
12951283 /**
12961284 * Event constant for the "registerFlashID" event for cleaner code.
@@ -1314,7 +1302,7 @@ this.createjs = this.createjs || {};
13141302
13151303 /**
13161304 * The capabilities of the plugin. This is generated via the {{#crossLink "WebAudioPlugin/_generateCapabilities"}}{{/crossLink}}
1317- * method. Please see the Sound {{#crossLink "Sound/getCapabilities "}}{{/crossLink}} method for a list of available
1305+ * method. Please see the Sound {{#crossLink "Sound/capabilities:property "}}{{/crossLink}} method for a list of available
13181306 * capabilities.
13191307 * @property _capabilities
13201308 * @type {Object }
@@ -1351,7 +1339,7 @@ this.createjs = this.createjs || {};
13511339 } ;
13521340
13531341 /**
1354- * Determine the capabilities of the plugin. Used internally. Please see the Sound API {{#crossLink "Sound/getCapabilities "}}{{/crossLink}}
1342+ * Determine the capabilities of the plugin. Used internally. Please see the Sound API {{#crossLink "Sound/capabilities:property "}}{{/crossLink}}
13551343 * method for an overview of plugin capabilities.
13561344 * @method _generateCapabilities
13571345 * @static
@@ -1599,6 +1587,6 @@ this.createjs = this.createjs || {};
15991587 * @type String
16001588 * @static
16011589 **/
1602- s . buildDate = /*=date*/ "Mon, 14 Sep 2015 19:11:47 GMT" ; // injected by build process
1590+ s . buildDate = /*=date*/ "Thu, 08 Jun 2017 21:05:43 GMT" ; // injected by build process
16031591
16041592} ) ( ) ;
0 commit comments