| Current Path : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-animated-headlines/js/ |
| Current File : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-animated-headlines/js/settings.js |
(function($){
FLBuilder.addHook( 'didRenderLayoutJSComplete', function() {
FLBuilder._moduleHelpers['pp-animated-headlines']._reInit();
} );
FLBuilder.registerModuleHelper('pp-animated-headlines', {
init: function()
{
var form = $('.fl-builder-settings'),
nodeId = form.data('node');
// Init hide function.
this._toggleAnimatedSelectionFields();
// Validation events.
form.find('select[name=effect_type]').on('change', this._toggleTypeOptions);
form.find('select[name=headline_style]').on('change', this._toggleAnimatedSelectionFields);
form.find('input[name="alignment"]').on('change', function() {
$('.fl-node-' + nodeId).find('.pp-headline')
.removeClass('pp-headline-left')
.removeClass('pp-headline-center')
.removeClass('pp-headline-right')
.addClass('pp-headline-' + $(this).val());
});
},
_toggleAnimatedSelectionFields: function()
{
var form = $('.fl-builder-settings');
if ( 'highlight' === form.find('select[name=headline_style]').val() ) {
form.find('#fl-field-animated_selection_bg_color').hide();
form.find('#fl-field-animated_selection_color').hide();
}
if ( 'rotate' === form.find('select[name=headline_style]').val() ) {
if ( 'typing' === form.find('select[name=animation_type]').val() ) {
form.find('#fl-field-animated_selection_bg_color').show();
form.find('#fl-field-animated_selection_color').show();
}
}
},
_reInit: function() {
var form = $('.fl-builder-settings'),
nodeId = form.data('node');
if ( 'undefined' !== typeof pp_animated_headlines && 'undefined' !== typeof pp_animated_headlines[nodeId] ) {
pp_animated_headlines[nodeId]._destroy();
pp_animated_headlines[nodeId]._fillWords();
pp_animated_headlines[nodeId]._initHeadlines();
}
}
});
})(jQuery);