Added Media.seekTo(int milliseconds);

This commit is contained in:
kernelsandirs
2011-05-04 11:51:26 -07:00
parent b94eedaf07
commit ffbc010d7b
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ Media.prototype.stop = function() {
};
/**
* Seek or jump to a new time in the track.
* Seek or jump to a new time in the track..
*/
Media.prototype.seekTo = function(milliseconds) {
PhoneGap.exec(null, null, "Media", "seekToAudio", [this.id, milliseconds]);