Update datatables.slidingChild.js

use strict mode
remove function expressions as defunct
pull/381/head
Nick 6 years ago committed by GitHub
parent c373070819
commit cfe86c4bbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,10 +7,12 @@
* @copyright Copyright 2017 datahandler. * @copyright Copyright 2017 datahandler.
*/ */
(function ($) { (function ($) {
'use strict';
var SlidingChild = function (dt, options) { var SlidingChild = function (dt, options) {
var opts = $.extend({}, SlidingChild.defaults, options); var opts = $.extend({}, SlidingChild.defaults, options);
$(dt.table().node(), '>tbody').on('click', opts.selector, function() { // bind to selector click
$(dt.table().node(), '> tbody').on('click', opts.selector, function() {
var $this = $(this); var $this = $(this);
var tr = $this.is('tr') ? $this : $this.closest('tr'); var tr = $this.is('tr') ? $this : $this.closest('tr');
@ -20,7 +22,7 @@
toggleChild(row); toggleChild(row);
}); });
var toggleChild = function (dtRow) { function toggleChild (dtRow) {
if (dtRow.child.isShown()) { if (dtRow.child.isShown()) {
closeChild(dtRow); closeChild(dtRow);
} }
@ -32,9 +34,9 @@
showChildData(dtRow); showChildData(dtRow);
} }
}; }
// code borrowed from the resource at: https://datatables.net/blog/2014-10-02 // code borrowed from the resource at: https://datatables.net/blog/2014-10-02
var closeChild = function (dtRow) { function closeChild (dtRow) {
var showingRow = $(dtRow.node()); var showingRow = $(dtRow.node());
$(opts.sliderSelector, dtRow.child()).slideUp(opts.animationSpeed, function () { $(opts.sliderSelector, dtRow.child()).slideUp(opts.animationSpeed, function () {
dtRow.child.remove(); dtRow.child.remove();
@ -43,9 +45,9 @@
opts.onHidden(dtRow); opts.onHidden(dtRow);
} }
}); });
}; }
var showChildData = function (dtRow) { function showChildData (dtRow) {
if (opts.ajax.requestUrl === null) { if (opts.ajax.requestUrl === null) {
showChildDataFromRow(dtRow); showChildDataFromRow(dtRow);
} }
@ -70,15 +72,15 @@
error: function (response) { showChild(dtRow, response); } error: function (response) { showChild(dtRow, response); }
}); });
} }
}; }
var showChildDataFromRow = function(dtRow) { function showChildDataFromRow(dtRow) {
if (!opts.dataFormatCallback) { return; } // throw error? if (!opts.dataFormatCallback) { return; } // throw error?
var data = opts.dataFormatCallback(dtRow); var data = opts.dataFormatCallback(dtRow);
showChild(dtRow, data); showChild(dtRow, data);
}; }
var showChild = function(dtRow, data) { function showChild(dtRow, data) {
var selectedRow = $(dtRow.node()); var selectedRow = $(dtRow.node());
dtRow.child(data, opts.childClass).show(); dtRow.child(data, opts.childClass).show();
@ -89,7 +91,7 @@
opts.onShown(dtRow); opts.onShown(dtRow);
} }
}); });
}; }
}; };
SlidingChild.defaults = { SlidingChild.defaults = {

Loading…
Cancel
Save