mirror of
http://github.com/AhabHyde/JSComando
synced 2025-01-25 05:14:22 +01:00
50 lines
693 B
JavaScript
50 lines
693 B
JavaScript
function playPause() {
|
|
$.ajax('/playpause/', {
|
|
method: 'GET',
|
|
success: null
|
|
})
|
|
console.log("playPause")
|
|
}
|
|
|
|
function fullscreen() {
|
|
$.ajax('/fullscreen/', {
|
|
method: 'GET'
|
|
})
|
|
console.log("fullscreen")
|
|
}
|
|
|
|
function back() {
|
|
$.ajax('/back/', {
|
|
method: 'GET'
|
|
})
|
|
console.log("back")
|
|
}
|
|
|
|
function forward() {
|
|
$.ajax('/forward/', {
|
|
method: 'GET'
|
|
})
|
|
console.log("forward")
|
|
}
|
|
|
|
function audiodown() {
|
|
$.ajax('/audiodown/', {
|
|
method: 'GET'
|
|
})
|
|
console.log("audiodown")
|
|
}
|
|
|
|
function mute() {
|
|
$.ajax('/mute/', {
|
|
method: 'GET'
|
|
})
|
|
console.log("mute")
|
|
}
|
|
|
|
function audioup() {
|
|
$.ajax('/audioup/', {
|
|
method: 'GET'
|
|
})
|
|
console.log("audioup")
|
|
}
|