Added cancel button to picture change modal

This commit is contained in:
Julian Lam
2015-11-09 15:04:47 -05:00
parent 277a3ba2af
commit ccf957f681

View File

@@ -89,6 +89,11 @@ define('forum/account/edit', ['forum/account/header', 'uploader', 'translator'],
message: html,
show: true,
buttons: {
close: {
label: '[[global:close]]',
callback: onCloseModal,
className: 'btn-link'
},
update: {
label: '[[global:save_changes]]',
callback: saveSelection
@@ -137,6 +142,10 @@ define('forum/account/edit', ['forum/account/header', 'uploader', 'translator'],
ajaxify.refresh();
});
}
function onCloseModal() {
modal.modal('hide');
}
});
});
});