created basic files

这个提交包含在:
HB9HIL 2023-12-03 21:29:22 +01:00
父节点 50ba86de5b
当前提交 d8c83198f1
共有 2 个文件被更改,包括 17 次插入1 次删除

查看文件

@ -0,0 +1 @@
<h2>TEST DATA</h2>

查看文件

@ -19,4 +19,19 @@ $('#version_dialog_mode').on('change', function () {
showCustomTextarea();
});
//
function displayVersionDialog() {
BootstrapDialog.show({
title: 'Stored Queries',
type: BootstrapDialog.TYPE_WARNING,
size: BootstrapDialog.SIZE_NORMAL,
cssClass: 'queries-dialog',
nl2br: false,
message: 'You need to make a query before you search!',
buttons: [{
label: lang_admin_close,
action: function(dialogItself) {
dialogItself.close();
}
}]
});
}