mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
14 lines
235 B
JavaScript
14 lines
235 B
JavaScript
![]() |
function displaySettings() {
|
||
|
$("#settingsDialog").dialog({
|
||
|
modal: true,
|
||
|
width: 600
|
||
|
});
|
||
|
|
||
|
$("#settingsTabs").tabs();
|
||
|
}
|
||
|
|
||
|
$("#changePasswordForm").submit(() => {
|
||
|
console.log("Submit");
|
||
|
|
||
|
return false;
|
||
|
});
|