mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-06 10:19:11 +01:00
Semicolons for consistency ;);
This commit is contained in:
parent
ef8eef7519
commit
6407caa761
1 changed files with 3 additions and 3 deletions
|
@ -470,8 +470,8 @@ function initRepository() {
|
||||||
function initInstall() {
|
function initInstall() {
|
||||||
// database type change
|
// database type change
|
||||||
(function () {
|
(function () {
|
||||||
var mysql_default = '127.0.0.1:3306'
|
var mysql_default = '127.0.0.1:3306';
|
||||||
var postgres_default = '127.0.0.1:5432'
|
var postgres_default = '127.0.0.1:5432';
|
||||||
|
|
||||||
$('#install-database').on("change", function () {
|
$('#install-database').on("change", function () {
|
||||||
var val = $(this).val();
|
var val = $(this).val();
|
||||||
|
@ -767,7 +767,7 @@ function initIssue() {
|
||||||
$('.issue-edit-cancel').on("click", function () {
|
$('.issue-edit-cancel').on("click", function () {
|
||||||
$('#issue h1.title,#issue .issue-main > .issue-content .content,#issue-edit-btn').toggleShow();
|
$('#issue h1.title,#issue .issue-main > .issue-content .content,#issue-edit-btn').toggleShow();
|
||||||
$('#issue-edit-title,.issue-edit-content,.issue-edit-cancel,.issue-edit-save').toggleHide();
|
$('#issue-edit-title,.issue-edit-content,.issue-edit-cancel,.issue-edit-save').toggleHide();
|
||||||
})
|
});
|
||||||
}());
|
}());
|
||||||
|
|
||||||
// issue ajax update
|
// issue ajax update
|
||||||
|
|
Loading…
Reference in a new issue