| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/zinisoft.net/wp-content/plugins/fusion-builder.bak/js/views/ |
Upload File : |
/* eslint-disable no-mixed-operators */
/* eslint no-useless-concat: 0 */
var FusionPageBuilder = FusionPageBuilder || {};
( function( $ ) {
$( document ).ready( function() {
FusionPageBuilder.BulkAddView = window.wp.Backbone.View.extend( {
className: FusionPageBuilder.ElementSettingsView.prototype.className + ' fusion-builder-bulk-add-dialog',
template: FusionPageBuilder.template( $( '#fusion-builder-bulk-add-template' ).html() ),
events: {
'click .predefined-choice': 'predefinedChoices'
},
getChoices: function() {
var textarea = this.$el.find( 'textarea' ).val(),
choices = [];
if ( textarea ) {
_.each( textarea.split( /\n/ ), function( line ) {
var choice = line.trim();
if ( choice ) {
choices.push( choice );
}
} );
}
return choices;
},
predefinedChoices: function( event ) {
var $element = jQuery( event.target ),
value = $element.data( 'value' ),
choices;
if ( ! isNaN( value ) ) {
choices = this.options.choices[ value ].values;
choices = choices.join( '\n' );
this.$el.find( 'textarea' ).val( choices );
}
}
} );
} );
}( jQuery ) );