You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.6 KiB
JavaScript
73 lines
1.6 KiB
JavaScript
/*! © Alejandro Navarro - datatables.net/license */
|
|
|
|
(function( factory ){
|
|
if ( typeof define === 'function' && define.amd ) {
|
|
// AMD
|
|
define( ['jquery', 'datatables.net'], function ( $ ) {
|
|
return factory( $, window, document );
|
|
} );
|
|
}
|
|
else if ( typeof exports === 'object' ) {
|
|
// CommonJS
|
|
var jq = require('jquery');
|
|
var cjsRequires = function (root, $) {
|
|
if ( ! $.fn.dataTable ) {
|
|
require('datatables.net')(root, $);
|
|
}
|
|
};
|
|
|
|
if (typeof window === 'undefined') {
|
|
module.exports = function (root, $) {
|
|
if ( ! root ) {
|
|
// CommonJS environments without a window global must pass a
|
|
// root. This will give an error otherwise
|
|
root = window;
|
|
}
|
|
|
|
if ( ! $ ) {
|
|
$ = jq( root );
|
|
}
|
|
|
|
cjsRequires( root, $ );
|
|
return factory( $, root, root.document );
|
|
};
|
|
}
|
|
else {
|
|
cjsRequires( window, jq );
|
|
module.exports = factory( jq, window, window.document );
|
|
}
|
|
}
|
|
else {
|
|
// Browser
|
|
factory( jQuery, window, document );
|
|
}
|
|
}(function( $, window, document, undefined ) {
|
|
'use strict';
|
|
var DataTable = $.fn.dataTable;
|
|
|
|
|
|
/**
|
|
* This plug-in will read the text from the header cell of a column, returning
|
|
* that value.
|
|
*
|
|
* @name column().title()
|
|
* @summary Get the title of a column
|
|
* @author Alejandro Navarro
|
|
* @requires DataTables 1.10+
|
|
*
|
|
* @returns {String} Column title
|
|
*
|
|
* @example
|
|
* // Read the title text of column index 3
|
|
* var table = $('#example').DataTable();
|
|
* table.column( 3 ).title();
|
|
*/
|
|
DataTable.Api.register('column().title()', function () {
|
|
var title = this.header();
|
|
return $(title).text().trim();
|
|
});
|
|
|
|
|
|
return DataTable;
|
|
}));
|