fl-builder-template-data-exporter.js
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
( function( $ ) {
/**
* @class FLBuilderTemplateDataExporter
* @since 1.8
*/
FLBuilderTemplateDataExporter = {
/**
* @since 1.8
* @method init
*/
init: function()
{
$( 'input[name="fl-builder-template-data-exporter-all"]' ).on( 'click', FLBuilderTemplateDataExporter._allCheckboxClicked );
$( '.fl-builder-template-data-checkbox' ).on( 'click', FLBuilderTemplateDataExporter._checkboxClicked );
},
/**
* @since 1.8
* @access private
* @method _allCheckboxClicked
*/
_allCheckboxClicked: function()
{
var checkbox = $( this ),
parent = checkbox.parents( '.fl-builder-template-data-section ' ),
checkboxes = parent.find( '.fl-builder-template-data-checkbox' );
if ( checkbox.is( ':checked' ) ) {
checkboxes.prop( 'checked', true );
}
else {
checkboxes.prop( 'checked', false );
}
},
/**
* @since 1.8
* @access private
* @method _checkboxClicked
*/
_checkboxClicked: function()
{
var allChecked = true,
parent = $( this ).parents( '.fl-builder-template-data-section ' ),
checkboxes = parent.find( '.fl-builder-template-data-checkbox' ),
allCheckbox = parent.find( 'input[name="fl-builder-template-data-exporter-all"]' );
checkboxes.each( function() {
if ( ! $( this ).is( ':checked' ) ) {
allChecked = false;
}
});
allCheckbox.prop( 'checked', allChecked );
}
};
$( FLBuilderTemplateDataExporter.init );
} )( jQuery );