summaryrefslogtreecommitdiffstats
path: root/core/js/setup.js
diff options
context:
space:
mode:
authorTobias Ramforth <tobias@ramforth.com>2013-02-08 00:00:51 +0100
committerTobias Ramforth <tobias@ramforth.com>2013-02-08 00:00:51 +0100
commitd577f790c8cbcf4f8dce74f9991e4bd62e21f949 (patch)
tree3180f4061034082c6cd5018cc054ed8b5eb2dcec /core/js/setup.js
parentf2b5bc8ab8fadaee3db3a03e6a4748fdb28a01b1 (diff)
downloadnextcloud-server-d577f790c8cbcf4f8dce74f9991e4bd62e21f949.tar.gz
nextcloud-server-d577f790c8cbcf4f8dce74f9991e4bd62e21f949.zip
Added MS SQL Server support
Diffstat (limited to 'core/js/setup.js')
-rw-r--r--core/js/setup.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/js/setup.js b/core/js/setup.js
index 9aded6591ca..fb6e7c5097c 100644
--- a/core/js/setup.js
+++ b/core/js/setup.js
@@ -5,6 +5,7 @@ $(document).ready(function() {
mysql:!!$('#hasMySQL').val(),
postgresql:!!$('#hasPostgreSQL').val(),
oracle:!!$('#hasOracle').val(),
+ mssql:!!$('#hasMSSQL').val()
};
$('#selectDbType').buttonset();
@@ -41,6 +42,12 @@ $(document).ready(function() {
$('#dbhost').show(250);
$('#dbhostlabel').show(250);
});
+
+ $('#mssql').click(function() {
+ $('#use_other_db').slideDown(250);
+ $('#dbhost').show(250);
+ $('#dbhostlabel').show(250);
+ });
$('input[checked]').trigger('click');