File: /home/clinicamaciel/www/wp-content/plugins/trx_addons/shortcodes/popup/popup.js
/**
* Shortcode Anchor
*
* @package WordPress
* @subpackage ThemeREX Addons
* @since v1.2
*/
/* global jQuery:false */
/* global TRX_ADDONS_STORAGE:false */
// Init handlers
jQuery(document).on('action.init_shortcodes', function(e, container) {
"use strict";
jQuery('.sc_popup:not(.inited)').each(function() {
var id = jQuery(this).attr('id');
if (!id) return;
jQuery('a[href="#'+id+'"]').addClass('trx_addons_popup_link');
jQuery(this).addClass('inited');
});
});