27 lines
749 B
CoffeeScript
27 lines
749 B
CoffeeScript
|
$(document).ready(() ->
|
||
|
$('.video-status').click((e) ->
|
||
|
newStatus = prompt('New video status').toLowerCase()
|
||
|
payload =
|
||
|
status: newStatus
|
||
|
videoId = $('#video-id').val()
|
||
|
$.post('/video/' + videoId + '/edit/status', payload, (data) ->
|
||
|
if data == 'success'
|
||
|
$('.video-status span').text(capitalizeWord(newStatus))
|
||
|
)
|
||
|
)
|
||
|
|
||
|
$('.video-serial').click((e) ->
|
||
|
newSerial = prompt('New video serial number')
|
||
|
payload =
|
||
|
serial: newSerial
|
||
|
videoId = $('#video-id').val()
|
||
|
$.post('/video/' + videoId + '/edit/serial', payload, (data) ->
|
||
|
if data == 'success'
|
||
|
$('.video-serial span').text(newSerial)
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
|
||
|
capitalizeWord = (str) ->
|
||
|
return str.charAt(0).toUpperCase() + str.slice(1)
|