Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 2.06 KB

README.md

File metadata and controls

44 lines (31 loc) · 2.06 KB

VolumeSlider

Updated o 20/03/2018 by uareurapid (cordova IOS 4.5.4) Updated for Cordova 3.0 by orbitaloop

Installation

PhoneGap / Cordova iOS plugin that allows you to add a native volume slider (MPVolumeView) to your app.

Add the plugin much like any other: With cordova: cordova plugin add https://github.com/mosalingua/VolumeSlider or if you prefere, directly on the iOS project with plugman: plugman install --platform ios --project . --plugin https://github.com/mosalingua/VolumeSlider

Example

function onDeviceReady()
{
	var volumeSlider = window.plugins.volumeSlider;
	volumeSlider.createVolumeSlider(10,350,300,30); // origin x, origin y, width, height
	volumeSlider.showVolumeSlider();
}

... now since this is a native control added more or less on top of your webView, you might have to show and hide it if you navigate away from the page you want the VolumeSlider on:

volumeSlider.hideVolumeSlider();

License

The MIT License

Copyright (c) 2011 Tommy-Carlos Williams (github.com/devgeeks)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.