add js to manage the generate video button
This commit is contained in:
parent
2de36f01db
commit
7568dd63ed
|
@ -708,7 +708,7 @@ function renameEvent() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function exportEvent() {
|
function exportEvent() {
|
||||||
window.location.assign('?view=export&eid='+eventData.Id);
|
window.location.assign('?view=export&eids[]='+eventData.Id);
|
||||||
}
|
}
|
||||||
|
|
||||||
function showEventFrames() {
|
function showEventFrames() {
|
||||||
|
@ -1009,7 +1009,13 @@ function initPage() {
|
||||||
// Manage the EXPORT button
|
// Manage the EXPORT button
|
||||||
bindButton('#exportBtn', 'click', null, function onExportClick(evt) {
|
bindButton('#exportBtn', 'click', null, function onExportClick(evt) {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
window.location.assign('?view=export&eids[]='+eventData.Id);
|
exportEvent();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Manage the generateVideo button
|
||||||
|
bindButton('#videoBtn', 'click', null, function onExportClick(evt) {
|
||||||
|
evt.preventDefault();
|
||||||
|
videoEvent();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Manage the DOWNLOAD VIDEO button
|
// Manage the DOWNLOAD VIDEO button
|
||||||
|
|
Loading…
Reference in New Issue