mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-02 13:14:58 +00:00
3507b97887
Notifications are set when saving now (progress) until basic is redone.
17 lines
No EOL
409 B
Text
17 lines
No EOL
409 B
Text
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
//$('#save_button').attr('disabled', '');
|
|
});
|
|
</script>
|
|
|
|
<style>
|
|
#save_button[disabled="disabled"]
|
|
{
|
|
padding: 0px 6px 0px 6px;
|
|
border: 2px outset ButtonFace;
|
|
color: GrayText;
|
|
cursor: inherit;
|
|
}
|
|
</style>
|
|
|
|
<button type="submit" id="save_button" disabled="disabled">Save</button> |