aboutsummaryrefslogtreecommitdiffstats
path: root/dbdocs/routines/routine.js
diff options
context:
space:
mode:
Diffstat (limited to 'dbdocs/routines/routine.js')
-rw-r--r--dbdocs/routines/routine.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/dbdocs/routines/routine.js b/dbdocs/routines/routine.js
deleted file mode 100644
index efd2b21..0000000
--- a/dbdocs/routines/routine.js
+++ /dev/null
@@ -1,34 +0,0 @@
-function enableAnchors() {
- anchors.options.visible = 'always';
- anchors.add('h3');
-}
-
-$(document).ready(function() {
- enableAnchors();
-
- var table = $('#standard_table').DataTable( {
- lengthChange: false,
- bSort: false,
- bPaginate: false,
- autoWidth: true,
- buttons: [ ]
- } );
-
- table.buttons().container()
- .appendTo('#standard_table_wrapper .col-sm-6:eq(0)' );
-} );
-
-var codeElement = document.getElementById("sql-script-codemirror");
-var editor = null;
-if (null != codeElement) {
- editor = CodeMirror.fromTextArea(codeElement, {
- lineNumbers: true,
- mode: 'text/x-sql',
- indentWithTabs: true,
- smartIndent: true,
- lineNumbers: true,
- matchBrackets: true,
- autofocus: true,
- readOnly: true
- });
-}