diff options
| author | terminaldweller <thabogre@gmail.com> | 2022-08-08 14:33:17 +0000 | 
|---|---|---|
| committer | terminaldweller <thabogre@gmail.com> | 2022-08-08 14:33:17 +0000 | 
| commit | 8b6b707c085c2991bcc926d276cfbf0c8e23e9cb (patch) | |
| tree | e172c59590ff30c1e540778e70e77de69c514966 /dbdocs/routines | |
| parent | added docs for the db using schemaspy (diff) | |
| download | mdrtl-8b6b707c085c2991bcc926d276cfbf0c8e23e9cb.tar.gz mdrtl-8b6b707c085c2991bcc926d276cfbf0c8e23e9cb.zip | |
removed the docs, we no longer need them
Diffstat (limited to 'dbdocs/routines')
| -rw-r--r-- | dbdocs/routines/routine.js | 34 | 
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 -	}); -} | 
