PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
Ultimate_VC_Addons
/
admin
/
vc_extend
/
js
(function ($) { /* js view for singleTab Element*/ //console && console.log('UltimateSubTabView.js is loaded'); // Come from vc_map -> 'js_view' => 'UltimateSubTabView' if(typeof vc === 'undefined' || typeof window.VcColumnView==='undefined') return false; var Shortcodes = vc.shortcodes; window.UltimateSubTabView = window.VcColumnView.extend({ events:{ 'click > .vc_controls .vc_control-btn-delete':'deleteShortcode', 'click > .vc_controls .vc_control-btn-prepend':'addElement', 'click > .vc_controls .vc_control-btn-edit':'editElement', 'click > .vc_controls .vc_control-btn-clone':'clone', 'click > .wpb_element_wrapper > .vc_empty-container':'addToEmpty' }, // Render method called after element is added( cloned ), and on first initialisation render:function () { var params = this.model.get('params'); // console && console.log('UltimateSubTabView.params:'+params); window.UltimateSubTabView.__super__.render.call(this); // console && console.log('UltimateSubTabView.render() is loaded'); if(!params.tab_id) { params.tab_id = (+new Date() + '-' + Math.floor(Math.random() * 11)); this.model.save('params', params); } this.id = 'tab-' + params.tab_id; this.$el.attr('id', this.id); //console && console.log('UltimateSubTabView.render() end'); return this; }, ready:function (e) { window.UltimateSubTabView.__super__.ready.call(this, e); this.$tabs = this.$el.closest('.wpb_tabs_holder'); var params = this.model.get('params'); //console && console.log('UltimateSubTabView.ready() loading'); return this; }, changeShortcodeParams:function (model) { var params = model.get('params'); window.UltimateSubTabView.__super__.changeShortcodeParams.call(this, model); //var params = model.get('params'); if (_.isObject(params) && _.isString(params.title) && _.isString(params.tab_id)) { $('.ui-tabs-nav [href="#tab-' + params.tab_id + '"]').text(params.title); } //console && console.log('UltimateSubTabView changeShortcodeParams loading'); }, deleteShortcode:function (e) { _.isObject(e) && e.preventDefault(); var answer = confirm(window.i18nLocale.press_ok_to_delete_section), parent_id = this.model.get('parent_id'); if (answer !== true) return false; this.model.destroy(); if(!vc.shortcodes.where({parent_id: parent_id}).length) { vc.shortcodes.get(parent_id).destroy(); return false; } var params = this.model.get('params'), current_tab_index = $('[href=#tab-' + params.tab_id + ']', this.$tabs).parent().index(); $('[href=#tab-' + params.tab_id + ']').parent().remove(); var tab_length = this.$tabs.find('.ui-tabs-nav li:not(.add_tab_block)').length; if(tab_length > 0) { this.$tabs.tabs('refresh'); } if (current_tab_index < tab_length) { this.$tabs.tabs("option", "active", current_tab_index); } else if (tab_length > 0) { this.$tabs.tabs("option", "active", tab_length - 1); } // console && console.log('UltimateSubTabView.deleteShortcode loading'); }, cloneModel:function (model, parent_id, save_order) { var shortcodes_to_resort = [], new_order = _.isBoolean(save_order) && save_order === true ? model.get('order') : parseFloat(model.get('order')) + vc.clone_index, new_params = _.extend({}, model.get('params')); if (model.get('shortcode') === 'single_tab') _.extend(new_params, {tab_id:+new Date() + '-' + this.$tabs.find('[data-element_type=single_tab]').length + '-' + Math.floor(Math.random() * 11)}); var model_clone = Shortcodes.create({shortcode:model.get('shortcode'), parent_id:parent_id, order:new_order, cloned:true, cloned_from:model.toJSON(), params:new_params}); _.each(Shortcodes.where({parent_id:model.id}), function (shortcode) { this.cloneModel(shortcode, model_clone.id, true); }, this); //console && console.log('UltimateSubTabView.cloneModel loading'); return model_clone; } }); // Come from vc_map -> 'js_view' => 'UltimateSubTabView' })(window.jQuery);
[+]
..
[-] single_element_js.js
[edit]
[-] vc-headings-param.js
[edit]
[-] ultimate-responsive.js
[edit]
[-] vc-box-shadow-param.js
[edit]
[-] vc-google-fonts-param.js
[edit]
[-] ultimate-border.js
[edit]
[-] ult_tab_admin_enqueue_js.js
[edit]
[-] admin_enqueue_js.js
[edit]
[-] chosen.js
[edit]
[-] ultimate-spacing.js
[edit]
[-] vc-hotspot-param.js
[edit]
[-] ultimate-image_single.js
[edit]