diff options
Diffstat (limited to 'core/js/setup.js')
-rw-r--r-- | core/js/setup.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/js/setup.js b/core/js/setup.js index 6e056cc90d1..23c705a0686 100644 --- a/core/js/setup.js +++ b/core/js/setup.js @@ -4,6 +4,7 @@ $(document).ready(function() { sqlite:!!$('#hasSQLite').val(), mysql:!!$('#hasMySQL').val(), postgresql:!!$('#hasPostgreSQL').val(), + oracle:!!$('#hasOracle').val(), } $('#selectDbType').buttonset(); @@ -34,6 +35,12 @@ $(document).ready(function() { $('#dbhost').show(250); $('#dbhostlabel').show(250); }); + + $('#oci').click(function() { + $('#use_other_db').slideDown(250); + $('#dbhost').show(250); + $('#dbhostlabel').show(250); + }); $('input[checked]').trigger('click'); |