diff options
author | prashantsinalkar | 2019-09-13 14:43:41 +0530 |
---|---|---|
committer | prashantsinalkar | 2019-09-13 14:43:41 +0530 |
commit | 9492133cbd5a9a2ae2849b2b6faefb8c2c04b9db (patch) | |
tree | c47b2705f47c0e7a7dc5f5f4605756886129fd3e /website/static/website/js/cloud.js | |
parent | 88cd9bdbc72d208baa7cad42dd6a687055a800b6 (diff) | |
download | R_on_Cloud_Web_Interface-9492133cbd5a9a2ae2849b2b6faefb8c2c04b9db.tar.gz R_on_Cloud_Web_Interface-9492133cbd5a9a2ae2849b2b6faefb8c2c04b9db.tar.bz2 R_on_Cloud_Web_Interface-9492133cbd5a9a2ae2849b2b6faefb8c2c04b9db.zip |
updated js
Diffstat (limited to 'website/static/website/js/cloud.js')
-rw-r--r-- | website/static/website/js/cloud.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/website/static/website/js/cloud.js b/website/static/website/js/cloud.js index e762429..9aa3d87 100644 --- a/website/static/website/js/cloud.js +++ b/website/static/website/js/cloud.js @@ -87,6 +87,7 @@ $(document.body).ready(function() { $toggle_code = $("#toggle-code"); $fullscreen_code.click(function(e) { + alert("Press escape to exit from fullScreen mode"); editor.setOption("fullScreen", !editor.getOption( "fullScreen")); editor.focus(); @@ -106,6 +107,7 @@ $(document.body).ready(function() { $toggle_result = $("#toggle-result"); $fullscreen_result.click(function(e) { + alert("Press escape to exit from fullScreen mode"); result.setOption("fullScreen", !result.getOption( "fullScreen")); result.focus(); @@ -755,7 +757,9 @@ $(document.body).ready(function() { /****** Bug form handling *******************/ /********************************************/ $(document).on("click", "#bug", function(e) { - + alert("This form is under development"); + $("#bug_form_wrapper").modal('hide'); + return false; $.ajax({ url: 'get_bug_form/', dataType: 'JSON', |