mirror of
https://github.com/thewesker/greptweet.git
synced 2025-12-20 12:11:05 -05:00
7 lines
131 B
JavaScript
7 lines
131 B
JavaScript
function submitPressed() {
|
|
if (document.forms.f.checkValidity()) {
|
|
$("#b").button('loading');
|
|
document.forms.f.submit();
|
|
}
|
|
}
|