bootswatch_rails 3.3.1.1 → 3.3.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +1 -0
  3. data/datatables/DataTables-1.10.4.zip +0 -0
  4. data/generate.sh +98 -1
  5. data/lib/bootswatch_rails/engine.rb +31 -3
  6. data/lib/bootswatch_rails/version.rb +4 -2
  7. data/lib/generators/bootswatch_rails/install/install_generator.rb +3 -0
  8. data/lib/generators/bootswatch_rails/install/templates/application.js +4 -0
  9. data/lib/generators/bootswatch_rails/install/templates/head.html.erb +9 -1
  10. data/vendor/assets/images/back_disabled.png +0 -0
  11. data/vendor/assets/images/back_enabled.png +0 -0
  12. data/vendor/assets/images/back_enabled_hover.png +0 -0
  13. data/vendor/assets/images/forward_disabled.png +0 -0
  14. data/vendor/assets/images/forward_enabled.png +0 -0
  15. data/vendor/assets/images/forward_enabled_hover.png +0 -0
  16. data/vendor/assets/images/sort_asc.png +0 -0
  17. data/vendor/assets/images/sort_asc_disabled.png +0 -0
  18. data/vendor/assets/images/sort_both.png +0 -0
  19. data/vendor/assets/images/sort_desc.png +0 -0
  20. data/vendor/assets/images/sort_desc_disabled.png +0 -0
  21. data/vendor/assets/javascripts/dataTables.responsive.js +801 -0
  22. data/vendor/assets/javascripts/jquery.dataTables.js +14840 -0
  23. data/vendor/assets/stylesheets/cerulean.css +1 -1
  24. data/vendor/assets/stylesheets/cosmo.css +1 -1
  25. data/vendor/assets/stylesheets/custom.css +1 -1
  26. data/vendor/assets/stylesheets/cyborg.css +1 -1
  27. data/vendor/assets/stylesheets/darkly.css +1 -1
  28. data/vendor/assets/stylesheets/dataTables.responsive.css +93 -0
  29. data/vendor/assets/stylesheets/flatly.css +1 -1
  30. data/vendor/assets/stylesheets/journal.css +1 -1
  31. data/vendor/assets/stylesheets/jquery.dataTables.css +476 -0
  32. data/vendor/assets/stylesheets/lumen.css +1 -1
  33. data/vendor/assets/stylesheets/paper.css +1 -1
  34. data/vendor/assets/stylesheets/readable.css +1 -1
  35. data/vendor/assets/stylesheets/sandstone.css +1 -5
  36. data/vendor/assets/stylesheets/simplex.css +1 -1
  37. data/vendor/assets/stylesheets/slate.css +1 -1
  38. data/vendor/assets/stylesheets/spacelab.css +1 -1
  39. data/vendor/assets/stylesheets/superhero.css +1 -1
  40. data/vendor/assets/stylesheets/united.css +1 -1
  41. data/vendor/assets/stylesheets/yeti.css +3 -3
  42. metadata +18 -2
@@ -0,0 +1,801 @@
1
+ /*! Responsive 1.0.2
2
+ * 2014 SpryMedia Ltd - datatables.net/license
3
+ */
4
+
5
+ /**
6
+ * @summary Responsive
7
+ * @description Responsive tables plug-in for DataTables
8
+ * @version 1.0.2
9
+ * @file dataTables.responsive.js
10
+ * @author SpryMedia Ltd (www.sprymedia.co.uk)
11
+ * @contact www.sprymedia.co.uk/contact
12
+ * @copyright Copyright 2014 SpryMedia Ltd.
13
+ *
14
+ * This source file is free software, available under the following license:
15
+ * MIT license - http://datatables.net/license/mit
16
+ *
17
+ * This source file is distributed in the hope that it will be useful, but
18
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
20
+ *
21
+ * For details please refer to: http://www.datatables.net
22
+ */
23
+
24
+ (function(window, document, undefined) {
25
+
26
+
27
+ var factory = function( $, DataTable ) {
28
+ "use strict";
29
+
30
+ /**
31
+ * Responsive is a plug-in for the DataTables library that makes use of
32
+ * DataTables' ability to change the visibility of columns, changing the
33
+ * visibility of columns so the displayed columns fit into the table container.
34
+ * The end result is that complex tables will be dynamically adjusted to fit
35
+ * into the viewport, be it on a desktop, tablet or mobile browser.
36
+ *
37
+ * Responsive for DataTables has two modes of operation, which can used
38
+ * individually or combined:
39
+ *
40
+ * * Class name based control - columns assigned class names that match the
41
+ * breakpoint logic can be shown / hidden as required for each breakpoint.
42
+ * * Automatic control - columns are automatically hidden when there is no
43
+ * room left to display them. Columns removed from the right.
44
+ *
45
+ * In additional to column visibility control, Responsive also has built into
46
+ * options to use DataTables' child row display to show / hide the information
47
+ * from the table that has been hidden. There are also two modes of operation
48
+ * for this child row display:
49
+ *
50
+ * * Inline - when the control element that the user can use to show / hide
51
+ * child rows is displayed inside the first column of the table.
52
+ * * Column - where a whole column is dedicated to be the show / hide control.
53
+ *
54
+ * Initialisation of Responsive is performed by:
55
+ *
56
+ * * Adding the class `responsive` or `dt-responsive` to the table. In this case
57
+ * Responsive will automatically be initialised with the default configuration
58
+ * options when the DataTable is created.
59
+ * * Using the `responsive` option in the DataTables configuration options. This
60
+ * can also be used to specify the configuration options, or simply set to
61
+ * `true` to use the defaults.
62
+ *
63
+ * @class
64
+ * @param {object} settings DataTables settings object for the host table
65
+ * @param {object} [opts] Configuration options
66
+ * @requires jQuery 1.7+
67
+ * @requires DataTables 1.10.1+
68
+ *
69
+ * @example
70
+ * $('#example').DataTable( {
71
+ * responsive: true
72
+ * } );
73
+ * } );
74
+ */
75
+ var Responsive = function ( settings, opts ) {
76
+ // Sanity check that we are using DataTables 1.10 or newer
77
+ if ( ! DataTable.versionCheck || ! DataTable.versionCheck( '1.10.1' ) ) {
78
+ throw 'DataTables Responsive requires DataTables 1.10.1 or newer';
79
+ }
80
+
81
+ this.s = {
82
+ dt: new DataTable.Api( settings ),
83
+ columns: []
84
+ };
85
+
86
+ // Check if responsive has already been initialised on this table
87
+ if ( this.s.dt.settings()[0].responsive ) {
88
+ return;
89
+ }
90
+
91
+ // details is an object, but for simplicity the user can give it as a string
92
+ if ( opts && typeof opts.details === 'string' ) {
93
+ opts.details = { type: opts.details };
94
+ }
95
+
96
+ this.c = $.extend( true, {}, Responsive.defaults, DataTable.defaults.responsive, opts );
97
+ settings.responsive = this;
98
+ this._constructor();
99
+ };
100
+
101
+ Responsive.prototype = {
102
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
103
+ * Constructor
104
+ */
105
+
106
+ /**
107
+ * Initialise the Responsive instance
108
+ *
109
+ * @private
110
+ */
111
+ _constructor: function ()
112
+ {
113
+ var that = this;
114
+ var dt = this.s.dt;
115
+
116
+ dt.settings()[0]._responsive = this;
117
+
118
+ // Use DataTables' private throttle function to avoid processor thrashing
119
+ $(window).on( 'resize.dtr orientationchange.dtr', dt.settings()[0].oApi._fnThrottle( function () {
120
+ that._resize();
121
+ } ) );
122
+
123
+ // Destroy event handler
124
+ dt.on( 'destroy.dtr', function () {
125
+ $(window).off( 'resize.dtr orientationchange.dtr' );
126
+ } );
127
+
128
+ // Reorder the breakpoints array here in case they have been added out
129
+ // of order
130
+ this.c.breakpoints.sort( function (a, b) {
131
+ return a.width < b.width ? 1 :
132
+ a.width > b.width ? -1 : 0;
133
+ } );
134
+
135
+ // Determine which columns are already hidden, and should therefore
136
+ // remain hidden. TODO - should this be done? See thread 22677
137
+ //
138
+ // this.s.alwaysHidden = dt.columns(':hidden').indexes();
139
+
140
+ this._classLogic();
141
+ this._resizeAuto();
142
+
143
+ // First pass - draw the table for the current viewport size
144
+ this._resize();
145
+
146
+ // Details handler
147
+ var details = this.c.details;
148
+ if ( details.type ) {
149
+ that._detailsInit();
150
+ this._detailsVis();
151
+
152
+ dt.on( 'column-visibility.dtr', function () {
153
+ that._detailsVis();
154
+ } );
155
+
156
+ $(dt.table().node()).addClass( 'dtr-'+details.type );
157
+ }
158
+ },
159
+
160
+
161
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
162
+ * Private methods
163
+ */
164
+
165
+ /**
166
+ * Calculate the visibility for the columns in a table for a given
167
+ * breakpoint. The result is pre-determined based on the class logic if
168
+ * class names are used to control all columns, but the width of the table
169
+ * is also used if there are columns which are to be automatically shown
170
+ * and hidden.
171
+ *
172
+ * @param {string} breakpoint Breakpoint name to use for the calculation
173
+ * @return {array} Array of boolean values initiating the visibility of each
174
+ * column.
175
+ * @private
176
+ */
177
+ _columnsVisiblity: function ( breakpoint )
178
+ {
179
+ var dt = this.s.dt;
180
+ var columns = this.s.columns;
181
+ var i, ien;
182
+
183
+ // Class logic - determine which columns are in this breakpoint based
184
+ // on the classes. If no class control (i.e. `auto`) then `-` is used
185
+ // to indicate this to the rest of the function
186
+ var display = $.map( columns, function ( col ) {
187
+ return col.auto && col.minWidth === null ?
188
+ false :
189
+ col.auto === true ?
190
+ '-' :
191
+ $.inArray( breakpoint, col.includeIn ) !== -1;
192
+ } );
193
+
194
+ // Auto column control - first pass: how much width is taken by the
195
+ // ones that must be included from the non-auto columns
196
+ var requiredWidth = 0;
197
+ for ( i=0, ien=display.length ; i<ien ; i++ ) {
198
+ if ( display[i] === true ) {
199
+ requiredWidth += columns[i].minWidth;
200
+ }
201
+ }
202
+
203
+ // Second pass, use up any remaining width for other columns
204
+ var widthAvailable = dt.table().container().offsetWidth;
205
+ var usedWidth = widthAvailable - requiredWidth;
206
+
207
+ for ( i=0, ien=display.length ; i<ien ; i++ ) {
208
+ // Control column needs to always be included. This makes it sub-
209
+ // optimal in terms of using the available with, but to stop layout
210
+ // thrashing or overflow
211
+ if ( columns[i].control ) {
212
+ usedWidth -= columns[i].minWidth;
213
+ }
214
+ else if ( display[i] === '-' ) {
215
+ // Otherwise, remove the width
216
+ display[i] = usedWidth - columns[i].minWidth < 0 ?
217
+ false :
218
+ true;
219
+
220
+ // Continue counting down the width, so a smaller column to the
221
+ // left won't be shown
222
+ usedWidth -= columns[i].minWidth;
223
+ }
224
+ }
225
+
226
+ // Determine if the 'control' column should be shown (if there is one).
227
+ // This is the case when there is a hidden column (that is not the
228
+ // control column). The two loops look inefficient here, but they are
229
+ // trivial and will fly through. We need to know the outcome from the
230
+ // first , before the action in the second can be taken
231
+ var showControl = false;
232
+
233
+ for ( i=0, ien=columns.length ; i<ien ; i++ ) {
234
+ if ( ! columns[i].control && ! columns[i].never && ! display[i] ) {
235
+ showControl = true;
236
+ break;
237
+ }
238
+ }
239
+
240
+ for ( i=0, ien=columns.length ; i<ien ; i++ ) {
241
+ if ( columns[i].control ) {
242
+ display[i] = showControl;
243
+ }
244
+ }
245
+
246
+ // Finally we need to make sure that there is at least one column that
247
+ // is visible
248
+ if ( $.inArray( true, display ) === -1 ) {
249
+ display[0] = true;
250
+ }
251
+
252
+ return display;
253
+ },
254
+
255
+
256
+ /**
257
+ * Create the internal `columns` array with information about the columns
258
+ * for the table. This includes determining which breakpoints the column
259
+ * will appear in, based upon class names in the column, which makes up the
260
+ * vast majority of this method.
261
+ *
262
+ * @private
263
+ */
264
+ _classLogic: function ()
265
+ {
266
+ var that = this;
267
+ var calc = {};
268
+ var breakpoints = this.c.breakpoints;
269
+ var columns = this.s.dt.columns().eq(0).map( function (i) {
270
+ var className = this.column(i).header().className;
271
+
272
+ return {
273
+ className: className,
274
+ includeIn: [],
275
+ auto: false,
276
+ control: false,
277
+ never: className.match(/\bnever\b/) ? true : false
278
+ };
279
+ } );
280
+
281
+ // Simply add a breakpoint to `includeIn` array, ensuring that there are
282
+ // no duplicates
283
+ var add = function ( colIdx, name ) {
284
+ var includeIn = columns[ colIdx ].includeIn;
285
+
286
+ if ( $.inArray( name, includeIn ) === -1 ) {
287
+ includeIn.push( name );
288
+ }
289
+ };
290
+
291
+ var column = function ( colIdx, name, operator, matched ) {
292
+ var size, i, ien;
293
+
294
+ if ( ! operator ) {
295
+ columns[ colIdx ].includeIn.push( name );
296
+ }
297
+ else if ( operator === 'max-' ) {
298
+ // Add this breakpoint and all smaller
299
+ size = that._find( name ).width;
300
+
301
+ for ( i=0, ien=breakpoints.length ; i<ien ; i++ ) {
302
+ if ( breakpoints[i].width <= size ) {
303
+ add( colIdx, breakpoints[i].name );
304
+ }
305
+ }
306
+ }
307
+ else if ( operator === 'min-' ) {
308
+ // Add this breakpoint and all larger
309
+ size = that._find( name ).width;
310
+
311
+ for ( i=0, ien=breakpoints.length ; i<ien ; i++ ) {
312
+ if ( breakpoints[i].width >= size ) {
313
+ add( colIdx, breakpoints[i].name );
314
+ }
315
+ }
316
+ }
317
+ else if ( operator === 'not-' ) {
318
+ // Add all but this breakpoint (xxx need extra information)
319
+
320
+ for ( i=0, ien=breakpoints.length ; i<ien ; i++ ) {
321
+ if ( breakpoints[i].name.indexOf( matched ) === -1 ) {
322
+ add( colIdx, breakpoints[i].name );
323
+ }
324
+ }
325
+ }
326
+ };
327
+
328
+ // Loop over each column and determine if it has a responsive control
329
+ // class
330
+ columns.each( function ( col, i ) {
331
+ var classNames = col.className.split(' ');
332
+ var hasClass = false;
333
+
334
+ // Split the class name up so multiple rules can be applied if needed
335
+ for ( var k=0, ken=classNames.length ; k<ken ; k++ ) {
336
+ var className = $.trim( classNames[k] );
337
+
338
+ if ( className === 'all' ) {
339
+ // Include in all
340
+ hasClass = true;
341
+ col.includeIn = $.map( breakpoints, function (a) {
342
+ return a.name;
343
+ } );
344
+ return;
345
+ }
346
+ else if ( className === 'none' || className === 'never' ) {
347
+ // Include in none (default) and no auto
348
+ hasClass = true;
349
+ return;
350
+ }
351
+ else if ( className === 'control' ) {
352
+ // Special column that is only visible, when one of the other
353
+ // columns is hidden. This is used for the details control
354
+ hasClass = true;
355
+ col.control = true;
356
+ return;
357
+ }
358
+
359
+ $.each( breakpoints, function ( j, breakpoint ) {
360
+ // Does this column have a class that matches this breakpoint?
361
+ var brokenPoint = breakpoint.name.split('-');
362
+ var re = new RegExp( '(min\\-|max\\-|not\\-)?('+brokenPoint[0]+')(\\-[_a-zA-Z0-9])?' );
363
+ var match = className.match( re );
364
+
365
+ if ( match ) {
366
+ hasClass = true;
367
+
368
+ if ( match[2] === brokenPoint[0] && match[3] === '-'+brokenPoint[1] ) {
369
+ // Class name matches breakpoint name fully
370
+ column( i, breakpoint.name, match[1], match[2]+match[3] );
371
+ }
372
+ else if ( match[2] === brokenPoint[0] && ! match[3] ) {
373
+ // Class name matched primary breakpoint name with no qualifier
374
+ column( i, breakpoint.name, match[1], match[2] );
375
+ }
376
+ }
377
+ } );
378
+ }
379
+
380
+ // If there was no control class, then automatic sizing is used
381
+ if ( ! hasClass ) {
382
+ col.auto = true;
383
+ }
384
+ } );
385
+
386
+ this.s.columns = columns;
387
+ },
388
+
389
+
390
+ /**
391
+ * Initialisation for the details handler
392
+ *
393
+ * @private
394
+ */
395
+ _detailsInit: function ()
396
+ {
397
+ var that = this;
398
+ var dt = this.s.dt;
399
+ var details = this.c.details;
400
+
401
+ // The inline type always uses the first child as the target
402
+ if ( details.type === 'inline' ) {
403
+ details.target = 'td:first-child';
404
+ }
405
+
406
+ // type.target can be a string jQuery selector or a column index
407
+ var target = details.target;
408
+ var selector = typeof target === 'string' ? target : 'td';
409
+
410
+ // Click handler to show / hide the details rows when they are available
411
+ $( dt.table().body() ).on( 'click', selector, function (e) {
412
+ // If the table is not collapsed (i.e. there is no hidden columns)
413
+ // then take no action
414
+ if ( ! $(dt.table().node()).hasClass('collapsed' ) ) {
415
+ return;
416
+ }
417
+
418
+ // Check that the row is actually a DataTable's controlled node
419
+ if ( ! dt.row( $(this).closest('tr') ).length ) {
420
+ return;
421
+ }
422
+
423
+ // For column index, we determine if we should act or not in the
424
+ // handler - otherwise it is already okay
425
+ if ( typeof target === 'number' ) {
426
+ var targetIdx = target < 0 ?
427
+ dt.columns().eq(0).length + target :
428
+ target;
429
+
430
+ if ( dt.cell( this ).index().column !== targetIdx ) {
431
+ return;
432
+ }
433
+ }
434
+
435
+ // $().closest() includes itself in its check
436
+ var row = dt.row( $(this).closest('tr') );
437
+
438
+ if ( row.child.isShown() ) {
439
+ row.child( false );
440
+ $( row.node() ).removeClass( 'parent' );
441
+ }
442
+ else {
443
+ var info = that.c.details.renderer( dt, row[0] );
444
+ row.child( info, 'child' ).show();
445
+ $( row.node() ).addClass( 'parent' );
446
+ }
447
+ } );
448
+ },
449
+
450
+
451
+ /**
452
+ * Update the child rows in the table whenever the column visibility changes
453
+ *
454
+ * @private
455
+ */
456
+ _detailsVis: function ()
457
+ {
458
+ var that = this;
459
+ var dt = this.s.dt;
460
+
461
+ // Find how many columns are hidden
462
+ var hiddenColumns = dt.columns().indexes().filter( function ( idx ) {
463
+ var col = dt.column( idx );
464
+
465
+ if ( col.visible() ) {
466
+ return null;
467
+ }
468
+
469
+ // Only counts as hidden if it doesn't have the `never` class
470
+ return $( col.header() ).hasClass( 'never' ) ? null : idx;
471
+ } );
472
+ var haveHidden = true;
473
+
474
+ if ( hiddenColumns.length === 0 || ( hiddenColumns.length === 1 && this.s.columns[ hiddenColumns[0] ].control ) ) {
475
+ haveHidden = false;
476
+ }
477
+
478
+ if ( haveHidden ) {
479
+ // Got hidden columns
480
+ $( dt.table().node() ).addClass('collapsed');
481
+
482
+ // Show all existing child rows
483
+ dt.rows().eq(0).each( function (idx) {
484
+ var row = dt.row( idx );
485
+
486
+ if ( row.child() ) {
487
+ var info = that.c.details.renderer( dt, row[0] );
488
+
489
+ // The renderer can return false to have no child row
490
+ if ( info === false ) {
491
+ row.child.hide();
492
+ }
493
+ else {
494
+ row.child( info, 'child' ).show();
495
+ }
496
+ }
497
+ } );
498
+ }
499
+ else {
500
+ // No hidden columns
501
+ $( dt.table().node() ).removeClass('collapsed');
502
+
503
+ // Hide all existing child rows
504
+ dt.rows().eq(0).each( function (idx) {
505
+ dt.row( idx ).child.hide();
506
+ } );
507
+ }
508
+ },
509
+
510
+
511
+ /**
512
+ * Find a breakpoint object from a name
513
+ * @param {string} name Breakpoint name to find
514
+ * @return {object} Breakpoint description object
515
+ */
516
+ _find: function ( name )
517
+ {
518
+ var breakpoints = this.c.breakpoints;
519
+
520
+ for ( var i=0, ien=breakpoints.length ; i<ien ; i++ ) {
521
+ if ( breakpoints[i].name === name ) {
522
+ return breakpoints[i];
523
+ }
524
+ }
525
+ },
526
+
527
+
528
+ /**
529
+ * Alter the table display for a resized viewport. This involves first
530
+ * determining what breakpoint the window currently is in, getting the
531
+ * column visibilities to apply and then setting them.
532
+ *
533
+ * @private
534
+ */
535
+ _resize: function ()
536
+ {
537
+ var dt = this.s.dt;
538
+ var width = $(window).width();
539
+ var breakpoints = this.c.breakpoints;
540
+ var breakpoint = breakpoints[0].name;
541
+
542
+ // Determine what breakpoint we are currently at
543
+ for ( var i=breakpoints.length-1 ; i>=0 ; i-- ) {
544
+ if ( width <= breakpoints[i].width ) {
545
+ breakpoint = breakpoints[i].name;
546
+ break;
547
+ }
548
+ }
549
+
550
+ // Show the columns for that break point
551
+ var columns = this._columnsVisiblity( breakpoint );
552
+
553
+ dt.columns().eq(0).each( function ( colIdx, i ) {
554
+ dt.column( colIdx ).visible( columns[i] );
555
+ } );
556
+ },
557
+
558
+
559
+ /**
560
+ * Determine the width of each column in the table so the auto column hiding
561
+ * has that information to work with. This method is never going to be 100%
562
+ * perfect since column widths can change slightly per page, but without
563
+ * seriously compromising performance this is quite effective.
564
+ *
565
+ * @private
566
+ */
567
+ _resizeAuto: function ()
568
+ {
569
+ var dt = this.s.dt;
570
+ var columns = this.s.columns;
571
+
572
+ // Are we allowed to do auto sizing?
573
+ if ( ! this.c.auto ) {
574
+ return;
575
+ }
576
+
577
+ // Are there any columns that actually need auto-sizing, or do they all
578
+ // have classes defined
579
+ if ( $.inArray( true, $.map( columns, function (c) { return c.auto; } ) ) === -1 ) {
580
+ return;
581
+ }
582
+
583
+ // Clone the table with the current data in it
584
+ var tableWidth = dt.table().node().offsetWidth;
585
+ var columnWidths = dt.columns;
586
+ var clonedTable = dt.table().node().cloneNode( false );
587
+ var clonedHeader = $( dt.table().header().cloneNode( false ) ).appendTo( clonedTable );
588
+ var clonedBody = $( dt.table().body().cloneNode( false ) ).appendTo( clonedTable );
589
+
590
+ // This is a bit slow, but we need to get a clone of each row that
591
+ // includes all columns. As such, try to do this as little as possible.
592
+ dt.rows( { page: 'current' } ).indexes().flatten().each( function ( idx ) {
593
+ var clone = dt.row( idx ).node().cloneNode( true );
594
+
595
+ if ( dt.columns( ':hidden' ).flatten().length ) {
596
+ $(clone).append( dt.cells( idx, ':hidden' ).nodes().to$().clone() );
597
+ }
598
+
599
+ $(clone).appendTo( clonedBody );
600
+ } );
601
+
602
+ var cells = dt.columns().header().to$().clone( false ).wrapAll('tr').appendTo( clonedHeader );
603
+ var inserted = $('<div/>')
604
+ .css( {
605
+ width: 1,
606
+ height: 1,
607
+ overflow: 'hidden'
608
+ } )
609
+ .append( clonedTable )
610
+ .insertBefore( dt.table().node() );
611
+
612
+ // The cloned header now contains the smallest that each column can be
613
+ dt.columns().eq(0).each( function ( idx ) {
614
+ columns[idx].minWidth = cells[ idx ].offsetWidth || 0;
615
+ } );
616
+
617
+ inserted.remove();
618
+ }
619
+ };
620
+
621
+
622
+ /**
623
+ * List of default breakpoints. Each item in the array is an object with two
624
+ * properties:
625
+ *
626
+ * * `name` - the breakpoint name.
627
+ * * `width` - the breakpoint width
628
+ *
629
+ * @name Responsive.breakpoints
630
+ * @static
631
+ */
632
+ Responsive.breakpoints = [
633
+ { name: 'desktop', width: Infinity },
634
+ { name: 'tablet-l', width: 1024 },
635
+ { name: 'tablet-p', width: 768 },
636
+ { name: 'mobile-l', width: 480 },
637
+ { name: 'mobile-p', width: 320 }
638
+ ];
639
+
640
+
641
+ /**
642
+ * Responsive default settings for initialisation
643
+ *
644
+ * @namespace
645
+ * @name Responsive.defaults
646
+ * @static
647
+ */
648
+ Responsive.defaults = {
649
+ /**
650
+ * List of breakpoints for the instance. Note that this means that each
651
+ * instance can have its own breakpoints. Additionally, the breakpoints
652
+ * cannot be changed once an instance has been creased.
653
+ *
654
+ * @type {Array}
655
+ * @default Takes the value of `Responsive.breakpoints`
656
+ */
657
+ breakpoints: Responsive.breakpoints,
658
+
659
+ /**
660
+ * Enable / disable auto hiding calculations. It can help to increase
661
+ * performance slightly if you disable this option, but all columns would
662
+ * need to have breakpoint classes assigned to them
663
+ *
664
+ * @type {Boolean}
665
+ * @default `true`
666
+ */
667
+ auto: true,
668
+
669
+ /**
670
+ * Details control. If given as a string value, the `type` property of the
671
+ * default object is set to that value, and the defaults used for the rest
672
+ * of the object - this is for ease of implementation.
673
+ *
674
+ * The object consists of the following properties:
675
+ *
676
+ * * `renderer` - function that is called for display of the child row data.
677
+ * The default function will show the data from the hidden columns
678
+ * * `target` - Used as the selector for what objects to attach the child
679
+ * open / close to
680
+ * * `type` - `false` to disable the details display, `inline` or `column`
681
+ * for the two control types
682
+ *
683
+ * @type {Object|string}
684
+ */
685
+ details: {
686
+ renderer: function ( api, rowIdx ) {
687
+ var data = api.cells( rowIdx, ':hidden' ).eq(0).map( function ( cell ) {
688
+ var header = $( api.column( cell.column ).header() );
689
+ var idx = api.cell( cell ).index();
690
+
691
+ if ( header.hasClass( 'control' ) || header.hasClass( 'never' ) ) {
692
+ return '';
693
+ }
694
+
695
+ // Use a non-public DT API method to render the data for display
696
+ // This needs to be updated when DT adds a suitable method for
697
+ // this type of data retrieval
698
+ var dtPrivate = api.settings()[0];
699
+ var cellData = dtPrivate.oApi._fnGetCellData(
700
+ dtPrivate, idx.row, idx.column, 'display'
701
+ );
702
+
703
+ return '<li data-dtr-index="'+idx.column+'">'+
704
+ '<span class="dtr-title">'+
705
+ header.text()+':'+
706
+ '</span> '+
707
+ '<span class="dtr-data">'+
708
+ cellData+
709
+ '</span>'+
710
+ '</li>';
711
+ } ).toArray().join('');
712
+
713
+ return data ?
714
+ $('<ul data-dtr-index="'+rowIdx+'"/>').append( data ) :
715
+ false;
716
+ },
717
+
718
+ target: 0,
719
+
720
+ type: 'inline'
721
+ }
722
+ };
723
+
724
+
725
+ /*
726
+ * API
727
+ */
728
+ var Api = $.fn.dataTable.Api;
729
+
730
+ // Doesn't do anything - work around for a bug in DT... Not documented
731
+ Api.register( 'responsive()', function () {
732
+ return this;
733
+ } );
734
+
735
+ Api.register( 'responsive.recalc()', function () {
736
+ this.iterator( 'table', function ( ctx ) {
737
+ if ( ctx._responsive ) {
738
+ ctx._responsive._resizeAuto();
739
+ ctx._responsive._resize();
740
+ }
741
+ } );
742
+ } );
743
+
744
+ Api.register( 'responsive.index()', function ( li ) {
745
+ li = $(li);
746
+
747
+ return {
748
+ column: li.data('dtr-index'),
749
+ row: li.parent().data('dtr-index')
750
+ };
751
+ } );
752
+
753
+
754
+ /**
755
+ * Version information
756
+ *
757
+ * @name Responsive.version
758
+ * @static
759
+ */
760
+ Responsive.version = '1.0.2';
761
+
762
+
763
+ $.fn.dataTable.Responsive = Responsive;
764
+ $.fn.DataTable.Responsive = Responsive;
765
+
766
+ // Attach a listener to the document which listens for DataTables initialisation
767
+ // events so we can automatically initialise
768
+ $(document).on( 'init.dt.dtr', function (e, settings, json) {
769
+ if ( $(settings.nTable).hasClass( 'responsive' ) ||
770
+ $(settings.nTable).hasClass( 'dt-responsive' ) ||
771
+ settings.oInit.responsive ||
772
+ DataTable.defaults.responsive
773
+ ) {
774
+ var init = settings.oInit.responsive;
775
+
776
+ if ( init !== false ) {
777
+ new Responsive( settings, $.isPlainObject( init ) ? init : {} );
778
+ }
779
+ }
780
+ } );
781
+
782
+ return Responsive;
783
+ }; // /factory
784
+
785
+
786
+ // Define as an AMD module if possible
787
+ if ( typeof define === 'function' && define.amd ) {
788
+ define( ['jquery', 'datatables'], factory );
789
+ }
790
+ else if ( typeof exports === 'object' ) {
791
+ // Node/CommonJS
792
+ factory( require('jquery'), require('datatables') );
793
+ }
794
+ else if ( jQuery && !jQuery.fn.dataTable.Responsive ) {
795
+ // Otherwise simply initialise as normal, stopping multiple evaluation
796
+ factory( jQuery, jQuery.fn.dataTable );
797
+ }
798
+
799
+
800
+ })(window, document);
801
+