forked from michaelwoods/SoundJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from hmhco/SIS-12146a
Sis 12146a
- Loading branch information
Showing
84 changed files
with
4,454 additions
and
3,747 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
_assets | ||
build | ||
bower.json | ||
dev | ||
docs | ||
examples | ||
extras | ||
icon.png | ||
lib/**-NEXT**.js | ||
spikes | ||
src | ||
tests | ||
tutorials | ||
VERSIONS.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
### TODO | ||
- [ ] Is this a question or bug? [Stack Overflow](https://stackoverflow.com/questions/tagged/createjs) is a much better place to ask any questions you may have. | ||
|
||
- [ ] Did you search the [issues](https://github.com/CreateJS/SoundJS/issues) to see if someone else has already reported your issue? If yes, please add more details if you have any! | ||
|
||
- [ ] If you're using an older [version](https://github.com/CreateJS/SoundJS/blob/master/VERSIONS.txt), have you tried the latest? | ||
|
||
- [ ] If you're requesting a new feature; provide as many details as you can. Why do you want this feature? Do you have ideas for how this feature should be implemented? Pseudocode is always welcome! | ||
|
||
|
||
### Issue Details | ||
* Version used (Ex; 1.0): | ||
|
||
|
||
* Describe whats happening (Include any relevant console errors, a [Gist](https://gist.github.com/) is preferred for longer errors): | ||
|
||
|
||
|
||
* OS & Browser version *(Please be specific)* (Ex; Windows 10 Home, Chrome 62.0.3202.94): | ||
|
||
|
||
|
||
* Do you know of any workarounds? | ||
|
||
|
||
|
||
* Provide any extra details that will help us fix your issue. Including a link to a [CodePen.io](https://codepen.io) or [JSFiddle.net](https://jsfiddle.net) example that shows the issue in isolation will greatly increase the chance of getting a quick response. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,60 @@ | ||
{ | ||
"source": [ | ||
"../src/soundjs/version.js", | ||
|
||
"../src/createjs/utils/extend.js", | ||
"../src/createjs/utils/promote.js", | ||
"../src/createjs/utils/IndexOf.js", | ||
"../src/createjs/utils/Proxy.js", | ||
"../src/createjs/utils/BrowserDetect.js", | ||
"../src/createjs/events/EventDispatcher.js", | ||
"../src/createjs/events/Event.js", | ||
|
||
"../src/createjs/events/ErrorEvent.js", | ||
"../src/preloadjs/events/ProgressEvent.js", | ||
"../src/preloadjs/data/LoadItem.js", | ||
"../src/preloadjs/utils/RequestUtils.js", | ||
"../src/preloadjs/loaders/AbstractLoader.js", | ||
"../src/preloadjs/loaders/AbstractMediaLoader.js", | ||
"../src/preloadjs/net/AbstractRequest.js", | ||
"../src/preloadjs/net/TagRequest.js", | ||
"../src/preloadjs/net/MediaTagRequest.js", | ||
"../src/preloadjs/net/XHRRequest.js", | ||
"../src/preloadjs/loaders/SoundLoader.js", | ||
|
||
"../src/soundjs/data/AudioSprite.js", | ||
"../src/soundjs/data/PlayPropsConfig.js", | ||
"../src/soundjs/Sound.js", | ||
"../src/soundjs/AbstractSoundInstance.js", | ||
"../src/soundjs/AbstractPlugin.js", | ||
"../src/soundjs/webAudio/WebAudioLoader.js", | ||
"../src/soundjs/webAudio/WebAudioSoundInstance.js", | ||
"../src/soundjs/webAudio/WebAudioPlugin.js", | ||
"../src/soundjs/binarywebaudio/BinaryWebAudioSoundInstance.js", | ||
"../src/soundjs/binarywebaudio/BinaryWebAudioPlugin.js", | ||
"../src/soundjs/htmlaudio/HTMLAudioTagPool.js", | ||
"../src/soundjs/htmlaudio/HTMLAudioSoundInstance.js", | ||
"../src/soundjs/htmlaudio/HTMLAudioPlugin.js" | ||
], | ||
|
||
"flashaudioplugin_source": [ | ||
"../src/swfobject.js", | ||
"../src/soundjs/flashaudio/FlashAudioLoader.js", | ||
"../src/soundjs/flashaudio/FlashAudioSoundInstance.js", | ||
"../src/soundjs/flashaudio/FlashAudioPlugin.js", | ||
"../src/soundjs/version_flashplugin.js" | ||
], | ||
|
||
"cordovaaudioplugin_source": [ | ||
"../src/soundjs/cordovaaudio/CordovaAudioLoader.js", | ||
"../src/soundjs/cordovaaudio/CordovaAudioSoundInstance.js", | ||
"../src/soundjs/cordovaaudio/CordovaAudioPlugin.js", | ||
"../src/soundjs/version_cordovaplugin.js" | ||
], | ||
|
||
"docs_out_path":"./output/SoundJSDocs/" | ||
} | ||
{ | ||
"source": [ | ||
"../src/soundjs/version.js", | ||
|
||
"../src/createjs/utils/extend.js", | ||
"../src/createjs/utils/promote.js", | ||
"../src/createjs/utils/deprecate.js", | ||
"../src/createjs/utils/indexOf.js", | ||
"../src/createjs/utils/proxy.js", | ||
"../src/createjs/utils/BrowserDetect.js", | ||
"../src/createjs/events/EventDispatcher.js", | ||
"../src/createjs/events/Event.js", | ||
"../src/createjs/events/ErrorEvent.js", | ||
|
||
"../src/preloadjs/events/ProgressEvent.js", | ||
"../src/preloadjs/data/LoadItem.js", | ||
"../src/preloadjs/data/Methods.js", | ||
"../src/preloadjs/data/Types.js", | ||
"../src/preloadjs/utils/Elements.js", | ||
"../src/preloadjs/utils/DomUtils.js", | ||
"../src/preloadjs/utils/RequestUtils.js", | ||
"../src/preloadjs/utils/URLUtils.js", | ||
"../src/preloadjs/loaders/AbstractLoader.js", | ||
"../src/preloadjs/loaders/AbstractMediaLoader.js", | ||
"../src/preloadjs/net/AbstractRequest.js", | ||
"../src/preloadjs/net/TagRequest.js", | ||
"../src/preloadjs/net/MediaTagRequest.js", | ||
"../src/preloadjs/net/XHRRequest.js", | ||
"../src/preloadjs/loaders/SoundLoader.js", | ||
|
||
"../src/soundjs/data/AudioSprite.js", | ||
"../src/soundjs/data/PlayPropsConfig.js", | ||
"../src/soundjs/Sound.js", | ||
"../src/soundjs/AbstractSoundInstance.js", | ||
"../src/soundjs/AbstractPlugin.js", | ||
"../src/soundjs/webaudio/WebAudioLoader.js", | ||
"../src/soundjs/webaudio/WebAudioSoundInstance.js", | ||
"../src/soundjs/webaudio/WebAudioPlugin.js", | ||
"../src/soundjs/htmlaudio/HTMLAudioTagPool.js", | ||
"../src/soundjs/htmlaudio/HTMLAudioSoundInstance.js", | ||
"../src/soundjs/htmlaudio/HTMLAudioPlugin.js" | ||
], | ||
|
||
"flashaudioplugin_source": [ | ||
"../src/swfobject.js", | ||
"../src/soundjs/flashaudio/FlashAudioLoader.js", | ||
"../src/soundjs/flashaudio/FlashAudioSoundInstance.js", | ||
"../src/soundjs/flashaudio/FlashAudioPlugin.js", | ||
"../src/soundjs/version_flashplugin.js" | ||
], | ||
|
||
"cordovaaudioplugin_source": [ | ||
"../src/soundjs/cordovaaudio/CordovaAudioLoader.js", | ||
"../src/soundjs/cordovaaudio/CordovaAudioSoundInstance.js", | ||
"../src/soundjs/cordovaaudio/CordovaAudioPlugin.js", | ||
"../src/soundjs/version_cordovaplugin.js" | ||
], | ||
|
||
"docs_out_path":"./output/SoundJSDocs/" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.