├── .codecov.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Example ├── Example-OSX │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ ├── IDETemplateMacros.plist │ │ └── xcschemes │ │ ├── Example-OSX.xcscheme │ │ └── Example-iOS.xcscheme └── Example │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Guides └── Getting Started.md ├── JSQSystemSoundPlayer.podspec ├── JSQSystemSoundPlayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ ├── JSQSystemSoundPlayer-OSX.xcscheme │ ├── JSQSystemSoundPlayer-iOS.xcscheme │ └── JSQSystemSoundPlayer-tvOS.xcscheme ├── LICENSE ├── README.md ├── Sample sounds ├── BalladPiano.caf ├── Basso.aif └── Funk.aiff ├── Screenshots ├── ios.png └── osx.png ├── Source ├── Info.plist ├── JSQSystemSoundPlayer.h └── JSQSystemSoundPlayer.m ├── Tests ├── Info.plist └── JSQSystemSoundPlayerTests.m └── docs ├── Classes.html ├── Classes └── JSQSystemSoundPlayer.html ├── Constants.html ├── Guides.html ├── Type Definitions.html ├── badge.svg ├── css ├── highlight.css └── jazzy.css ├── docsets └── JSQSystemSoundPlayer.docset │ └── Contents │ ├── Info.plist │ └── Resources │ ├── Documents │ ├── Classes.html │ ├── Classes │ │ └── JSQSystemSoundPlayer.html │ ├── Constants.html │ ├── Type Definitions.html │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ └── gh.png │ ├── index.html │ └── js │ │ ├── jazzy.js │ │ └── jquery.min.js │ └── docSet.dsidx ├── getting-started.html ├── img ├── carat.png ├── dash.png └── gh.png ├── index.html ├── js ├── jazzy.js └── jquery.min.js ├── search.json └── undocumented.json /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Example-OSX/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example-OSX/AppDelegate.h -------------------------------------------------------------------------------- /Example/Example-OSX/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example-OSX/AppDelegate.m -------------------------------------------------------------------------------- /Example/Example-OSX/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example-OSX/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Example/Example-OSX/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example-OSX/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example-OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example-OSX/Info.plist -------------------------------------------------------------------------------- /Example/Example-OSX/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example-OSX/main.m -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example-OSX.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme -------------------------------------------------------------------------------- /Example/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example/ViewController.h -------------------------------------------------------------------------------- /Example/Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example/ViewController.m -------------------------------------------------------------------------------- /Example/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Example/Example/main.m -------------------------------------------------------------------------------- /Guides/Getting Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Guides/Getting Started.md -------------------------------------------------------------------------------- /JSQSystemSoundPlayer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/JSQSystemSoundPlayer.podspec -------------------------------------------------------------------------------- /JSQSystemSoundPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/JSQSystemSoundPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JSQSystemSoundPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/JSQSystemSoundPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JSQSystemSoundPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/JSQSystemSoundPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /JSQSystemSoundPlayer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/JSQSystemSoundPlayer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /JSQSystemSoundPlayer.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/JSQSystemSoundPlayer.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /JSQSystemSoundPlayer.xcodeproj/xcshareddata/xcschemes/JSQSystemSoundPlayer-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/JSQSystemSoundPlayer.xcodeproj/xcshareddata/xcschemes/JSQSystemSoundPlayer-OSX.xcscheme -------------------------------------------------------------------------------- /JSQSystemSoundPlayer.xcodeproj/xcshareddata/xcschemes/JSQSystemSoundPlayer-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/JSQSystemSoundPlayer.xcodeproj/xcshareddata/xcschemes/JSQSystemSoundPlayer-iOS.xcscheme -------------------------------------------------------------------------------- /JSQSystemSoundPlayer.xcodeproj/xcshareddata/xcschemes/JSQSystemSoundPlayer-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/JSQSystemSoundPlayer.xcodeproj/xcshareddata/xcschemes/JSQSystemSoundPlayer-tvOS.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/README.md -------------------------------------------------------------------------------- /Sample sounds/BalladPiano.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Sample sounds/BalladPiano.caf -------------------------------------------------------------------------------- /Sample sounds/Basso.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Sample sounds/Basso.aif -------------------------------------------------------------------------------- /Sample sounds/Funk.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Sample sounds/Funk.aiff -------------------------------------------------------------------------------- /Screenshots/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Screenshots/ios.png -------------------------------------------------------------------------------- /Screenshots/osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Screenshots/osx.png -------------------------------------------------------------------------------- /Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Source/Info.plist -------------------------------------------------------------------------------- /Source/JSQSystemSoundPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Source/JSQSystemSoundPlayer.h -------------------------------------------------------------------------------- /Source/JSQSystemSoundPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Source/JSQSystemSoundPlayer.m -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/JSQSystemSoundPlayerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/Tests/JSQSystemSoundPlayerTests.m -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/JSQSystemSoundPlayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/Classes/JSQSystemSoundPlayer.html -------------------------------------------------------------------------------- /docs/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/Constants.html -------------------------------------------------------------------------------- /docs/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/Guides.html -------------------------------------------------------------------------------- /docs/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/Type Definitions.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/Classes/JSQSystemSoundPlayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/Classes/JSQSystemSoundPlayer.html -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/Constants.html -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/Type Definitions.html -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/docsets/JSQSystemSoundPlayer.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/getting-started.html -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/JSQSystemSoundPlayer/HEAD/docs/undocumented.json --------------------------------------------------------------------------------