This website works better with JavaScript.
Home
Explore
Help
Sign In
closed-social
/
gitea
Watch
3
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Fix “Submitting” state of Close issue input
If .btn-default isn’t removed, .btn-default and .btn-warning styles conflict
for-closed-social
Andrew Patton
10 years ago
parent
ef430ae7ab
commit
cd369b667f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
public/js/app.js
+ 1
- 1
public/js/app.js
View File
@ -643,7 +643,7 @@ function initIssue() {
var
$button
=
$
(
this
)
;
$button
.
removeClass
(
"btn-success"
)
;
$button
.
removeClass
(
"btn-success
btn-default
"
)
;
$button
.
addClass
(
"btn-warning"
)
;
$button
.
text
(
"Submiting..."
)
;
Write
Preview
Loading…
Cancel
Save