diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index 2e18f50669..5eb4aae3b1 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -914,6 +914,23 @@ tinyMCE.init({ }); $(document).ready (function () { + + var comfort = 0; + + if(comfort == 0){ + $(':input,:radio,:checkbox,:file').change(function(){ + $('#submit-update_button').css({'position':'fixed','right':'80px','bottom':'55px'}); + var comfort = 1; + }); + + $("*").keydown(function(){ + $('#submit-update_button').css({'position':'fixed','right':'80px','bottom':'55px'}); + var comfort = 1; + }); + + $('#form_setup').after('
'); + } + $("#form_setup #text-graph_color1").attachColorPicker(); $("#form_setup #text-graph_color2").attachColorPicker(); $("#form_setup #text-graph_color3").attachColorPicker();