From 8b6b707c085c2991bcc926d276cfbf0c8e23e9cb Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Mon, 8 Aug 2022 19:03:17 +0430 Subject: removed the docs, we no longer need them --- dbdocs/routines.js | 70 ------------------------------------------------------ 1 file changed, 70 deletions(-) delete mode 100644 dbdocs/routines.js (limited to 'dbdocs/routines.js') diff --git a/dbdocs/routines.js b/dbdocs/routines.js deleted file mode 100644 index cdc2350..0000000 --- a/dbdocs/routines.js +++ /dev/null @@ -1,70 +0,0 @@ -var filterBy = function(functionType) { - $.fn.dataTableExt.afnFiltering.length = 0; - $.fn.dataTable.ext.search.push( - function( settings, data, dataIndex ) { - var type = data[1]; // use data for the Type column - - if ( type.toUpperCase() == functionType || functionType == 'All' ) - { - return true; - } - return false; - } - ); -} - -$(document).ready(function() { - var activeObject; - var table = $('#routine_table').DataTable( { - lengthChange: false, - ordering: true, - paging: config.pagination, - pageLength: 50, - autoWidth: true, - processing: true, - order: [[ 0, "asc" ]], - buttons: [ - { - text: 'All', - action: function ( e, dt, node, config ) { - filterBy('All'); - if (activeObject != null) { - activeObject.active(false); - } - table.draw(); - } - }, - { - text: 'Functions', - action: function ( e, dt, node, config ) { - filterBy('FUNCTION'); - if (activeObject != null) { - activeObject.active(false); - } - this.active( !this.active() ); - activeObject = this; - table.draw(); - } - }, - { - text: 'Procedures', - action: function ( e, dt, node, config ) { - filterBy('PROCEDURE'); - if (activeObject != null) { - activeObject.active(false); - } - this.active( !this.active() ); - activeObject = this; - table.draw(); - } - }, - { - extend: 'columnsToggle', - columns: '.toggle' - } - ] - } ); - - //schemaSpy.js - dataTableExportButtons(table); -} ); -- cgit v1.2.3