File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed
Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ CRITICAL (may break existing content):
3333- fix HTMLAudioPlugin.updateStartTime to correct HTMLAudioPlugin._updateStartTime
3434- added CordovaAudioPlugin, for use with Cordova based apps including PhoneGap and Ionic
3535- fix Sound.loadComplete throwing errors for src that has not been loaded instead of expected false
36+ - fix missing ._volume property on AbstractPlugin
3637
3738
3839Version 0.6.0 [December 12, 2014]
Original file line number Diff line number Diff line change @@ -80,6 +80,15 @@ this.createjs = this.createjs || {};
8080 */
8181 this . _soundInstances = { } ;
8282
83+ /**
84+ * The internal master volume value of the plugin.
85+ * @property _volume
86+ * @type {Number }
87+ * @default 1
88+ * @protected
89+ */
90+ this . _volume = 1 ;
91+
8392 /**
8493 * A reference to a loader class used by a plugin that must be set.
8594 * @type {Object }
Original file line number Diff line number Diff line change @@ -76,15 +76,6 @@ this.createjs = this.createjs || {};
7676 */
7777 this . _panningModel = s . _panningModel ; ;
7878
79- /**
80- * The internal master volume value of the plugin.
81- * @property _volume
82- * @type {Number }
83- * @default 1
84- * @protected
85- */
86- this . _volume = 1 ;
87-
8879 /**
8980 * The web audio context, which WebAudio uses to play audio. All nodes that interact with the WebAudioPlugin
9081 * need to be created within this context.
You can’t perform that action at this time.
0 commit comments