Plugin Directory

Changeset 1758623


Ignore:
Timestamp:
11/04/2017 02:16:33 PM (8 years ago)
Author:
ksym04
Message:

Version 1.0.1 updates

Location:
zen-addons-for-siteorigin-page-builder
Files:
55 added
3 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-simple-accordion-widgets/js/script.js

    r1739278 r1758623  
    11/* [ZASO] Simple Accordion Template - Main JS */
     2
    23(function($) {
    34
     5  // hide all panel by default
    46  var allPanels = $('.zaso-simple-accordion > dd').hide();
    57
    6   $('.zaso-simple-accordion > dt > a').click(function(event) {
     8  // open state
     9  $('.zaso-simple-accordion__content').each(function(index, el) {
     10    if ( $(this).hasClass('zaso-simple-accordion--open') ) {
     11      $(this).slideDown();
     12    }
     13  });
     14
     15  // event click
     16  $('.zaso-simple-accordion__title').click(function(event) {
     17
    718    event.preventDefault();
    8     allPanels.slideUp();
    9     $(this).parent().next().slideDown();
     19    var currentContent = $(this).next();
     20
     21    if ( currentContent.hasClass('zaso-simple-accordion--open') ) {
     22      currentContent.slideUp().removeClass('zaso-simple-accordion--open');
     23    } else {
     24      currentContent.slideDown().addClass('zaso-simple-accordion--open');
     25    }
     26
    1027    return false;
     28
    1129  });
    1230
  • zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-simple-accordion-widgets/tpl/default.php

    r1739278 r1758623  
    11<?php
    22/**
    3  * [ZASO] Accordion Template
     3 * [ZASO] Simple Accordion Template
    44 * @since 1.0.0
    55 */
    6 ?>
    76
    8 <dl class="zaso-simple-accordion <?php echo $instance['extra_class']; ?>">
    9     <?php foreach ($instance['accordion'] as $a ) : ?>
     7$zaso_accordion_extra_id = ( ! empty( $instance['extra_id'] ) ) ? $instance['extra_id'] : ''; ?>
     8
     9<dl <?php printf( 'id="%s"', $zaso_accordion_extra_id ); ?> class="zaso-simple-accordion <?php echo $instance['extra_class']; ?>">
     10    <?php foreach ( $instance['accordion'] as $a ) : ?>
    1011        <dt class="zaso-simple-accordion__title">
    11             <a href="#"><?php echo $a['accordion_field_title']; ?></a>
     12          <?php echo $a['accordion_field_title']; ?>
    1213        </dt>
    13         <dd class="zaso-simple-accordion__content">
    14             <p><?php echo $a['accordion_field_content']; ?></p>
     14        <dd class="zaso-simple-accordion__content <?php echo $a['accordion_field_state']; ?>">
     15          <?php echo $a['accordion_field_content']; ?>
    1516        </dd>
    1617    <?php endforeach; ?>
  • zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-simple-accordion-widgets/zaso-simple-accordion-widgets.php

    r1739278 r1758623  
    33 * Widget Name: ZASO - Simple Accordion
    44 * Widget ID: zen-addons-siteorigin-simple-accordion
    5  * Description: Create vertically stacked list of items.
     5 * Description: Create a vertically stacked list of items.
    66 * Author: DopeThemes
    7  * Author URI: http://wordpress.dopethemes.com
     7 * Author URI: http://www.dopethemes.com/
    88 */
    99
     
    1919            __( 'ZASO - Simple Accordion', 'zaso' ),
    2020            array(
    21                 'description'   => __( 'Create vertically stacked list of items.', 'zaso' ),
    22                 'help'          => 'http://wordpress.dopethemes.com/',
    23                 'panels_groups' => array('zaso-plugin-widgets')
     21                'description'   => __( 'Create a vertically stacked list of items.', 'zaso' ),
     22                'help'          => 'http://www.dopethemes.com/',
     23                'panels_groups' => array('zaso-plugin-widgets')
    2424            ),
    2525            array(),
     
    2929                    'label' => __( 'Accordion List' , 'zaso' ),
    3030                    'item_name'  => __( 'Single Item', 'zaso' ),
    31                             'item_label' => array(
    32                                 'selector'     => "[name*='accordion_field_title']",
    33                                 'update_event' => 'change',
    34                                 'value_method' => 'val'
     31                    'item_label' => array(
     32                        'selector'      => "[name*='accordion_field_title']",
     33                        'update_event'  => 'change',
     34                        'value_method'  => 'val'
     35                    ),
     36                    'fields' => array(
     37                        'accordion_field_title' => array(
     38                            'type'  => 'text',
     39                            'label' => __( 'Accordion Title' , 'zaso' )
     40                        ),
     41                        'accordion_field_content' => array(
     42                            'type'  => 'tinymce',
     43                            'label' => __( 'Accordion Content' , 'zaso' ),
     44                            'row'   => 20
     45                        ),
     46                        'accordion_field_state' => array(
     47                            'type'    => 'select',
     48                            'label'   => __( 'Accordion Initial State' , 'zaso' ),
     49                            'options' => array(
     50                                'zaso-simple-accordion--close' => __( 'Close', 'zaso' ),
     51                                'zaso-simple-accordion--open'  => __( 'Open', 'zaso' ),
     52                            )
     53                        ),
     54                    )
     55                ),
     56                'extra_id' => array(
     57                    'type'  => 'text',
     58                    'label' => __( 'Extra ID', 'zaso' ),
     59                    'description'   => __( 'Add an extra ID.', 'zaso' ),
     60                ),
     61                'extra_class' => array(
     62                    'type'  => 'text',
     63                    'label' => __( 'Extra Class', 'zaso' ),
     64                    'description' => __( 'Add an extra class for styling overrides.', 'zaso' ),
     65                ),
     66                'design' => array(
     67                    'type' =>  'section',
     68                    'label' => __( 'Design', 'zaso' ),
     69                    'hide' => true,
     70                    'fields' => array(
     71                        'heading' => array(
     72                            'type' => 'section',
     73                            'label' => __( 'Headings', 'zaso' ),
     74                            'hide' => true,
     75                            'fields' => array(
     76                                'title_background_color' => array(
     77                                    'type'    => 'color',
     78                                    'label'   => __( 'Background Color', 'zaso' ),
     79                                    'default' => '#e5e5e5',
     80                                ),
     81                                'title_background_color_hover' => array(
     82                                    'type'    => 'color',
     83                                    'label'   => __( 'Background Hover Color', 'zaso' ),
     84                                    'default' => '#d5d5d5',
     85                                ),
     86                                'title_font_color' => array(
     87                                    'type'    => 'color',
     88                                    'label'   => __( 'Font Color', 'zaso' ),
     89                                    'default' => '#333333',
     90                                ),
     91                                'title_font_weight' => array(
     92                                    'type'    => 'select',
     93                                    'label'   => __( 'Font Weight', 'zaso' ),
     94                                    'default' => '700',
     95                                    'options' => array(
     96                                        '100'  => __( '100', 'zaso' ),
     97                                        '200'  => __( '200', 'zaso' ),
     98                                        '300'  => __( '300', 'zaso' ),
     99                                        '400'  => __( '400 - Normal', 'zaso' ),
     100                                        '500'  => __( '500', 'zaso' ),
     101                                        '600'  => __( '600', 'zaso' ),
     102                                        '700'  => __( '700 - Bold', 'zaso' ),
     103                                        '800'  => __( '800', 'zaso' ),
     104                                        '900'  => __( '900', 'zaso' )
     105                                    )
     106                                ),
     107                                'title_margin' => array(
     108                                    'type' => 'section',
     109                                    'label' => __( 'Margin', 'zaso' ),
     110                                    'hide' => true,
     111                                    'fields' => array(
     112                                        'top' => array(
     113                                            'type' => 'measurement',
     114                                            'label' => __( 'Top', 'zaso' ),
     115                                            'default' => '0px'
     116                                        ),
     117                                        'right' => array(
     118                                            'type' => 'measurement',
     119                                            'label' => __( 'Right', 'zaso' ),
     120                                            'default' => '0px'
     121                                        ),
     122                                        'bottom' => array(
     123                                            'type' => 'measurement',
     124                                            'label' => __( 'Bottom', 'zaso' ),
     125                                            'default' => '0px'
     126                                        ),
     127                                        'left' => array(
     128                                            'type' => 'measurement',
     129                                            'label' => __( 'Left', 'zaso' ),
     130                                            'default' => '0px'
     131                                        ),
     132                                    ),
     133                                ),
     134                                'title_padding' => array(
     135                                    'type' => 'section',
     136                                    'label' => __( 'Padding', 'zaso' ),
     137                                    'hide' => true,
     138                                    'fields' => array(
     139                                        'top' => array(
     140                                            'type' => 'measurement',
     141                                            'label' => __( 'Top', 'zaso' ),
     142                                            'default' => '1em'
     143                                        ),
     144                                        'right' => array(
     145                                            'type' => 'measurement',
     146                                            'label' => __( 'Right', 'zaso' ),
     147                                            'default' => '1.2em'
     148                                        ),
     149                                        'bottom' => array(
     150                                            'type' => 'measurement',
     151                                            'label' => __( 'Bottom', 'zaso' ),
     152                                            'default' => '1em'
     153                                        ),
     154                                        'left' => array(
     155                                            'type' => 'measurement',
     156                                            'label' => __( 'Left', 'zaso' ),
     157                                            'default' => '1.2em'
     158                                        ),
     159                                    ),
     160                                ),
    35161                            ),
    36                     'fields' => array(
    37                                 'accordion_field_title' => array(
    38                                     'type'  => 'text',
    39                                     'label' => esc_html__( 'Accordion Title' )
    40                                 ),
    41                                 'accordion_field_content' => array(
    42                                     'type'  => 'tinymce',
    43                                     'label' => esc_html__( 'Accordion Content' ),
    44                                     'row'   => 20
    45                                 ),
    46                             )
    47                 ),
    48                 'list_opening_options' => array(
    49                     'type' => 'select',
    50                     'label' => __( 'List Opening Options', 'zaso' ),
    51                     'description' => __( 'Select an opening options. [Default: Open first item]', 'zaso' ),
    52                     'default' => '1',
    53                     'options' => array(
    54                       'Open first item' => __( 'Open first item', 'zaso' ),
    55                       'Open all items'  => __( 'Open all items', 'zaso' ),
    56                       'Close all items' => __( 'Close all items', 'zaso' )
     162                        ),
     163                        'panels' => array(
     164                            'type' => 'section',
     165                            'label' => __( 'Panels', 'zaso' ),
     166                            'hide' => true,
     167                            'fields' => array(
     168                                'content_background_color' => array(
     169                                    'type' => 'color',
     170                                    'label' => __( 'Background Color',  'zaso' ),
     171                                    'default' => '#f5f5f5',
     172                                ),
     173                                'content_font_color' => array(
     174                                    'type'    => 'color',
     175                                    'label'   => __( 'Font Color', 'zaso' ),
     176                                    'default' => '#333333',
     177                                ),
     178                                'content_font_size' => array(
     179                                    'type'    => 'measurement',
     180                                    'label'   => __( 'Font Size', 'zaso' ),
     181                                    'default' => '1rem',
     182                                ),
     183                                'content_margin' => array(
     184                                    'type' => 'section',
     185                                    'label' => __( 'Margin', 'zaso' ),
     186                                    'hide' => true,
     187                                    'fields' => array(
     188                                        'top' => array(
     189                                            'type' => 'measurement',
     190                                            'label' => __( 'Top', 'zaso' ),
     191                                            'default' => '0px'
     192                                        ),
     193                                        'right' => array(
     194                                            'type' => 'measurement',
     195                                            'label' => __( 'Right', 'zaso' ),
     196                                            'default' => '0px'
     197                                        ),
     198                                        'bottom' => array(
     199                                            'type' => 'measurement',
     200                                            'label' => __( 'Bottom', 'zaso' ),
     201                                            'default' => '0px'
     202                                        ),
     203                                        'left' => array(
     204                                            'type' => 'measurement',
     205                                            'label' => __( 'Left', 'zaso' ),
     206                                            'default' => '0px'
     207                                        ),
     208                                    ),
     209                                ),
     210                                'content_padding' => array(
     211                                    'type' => 'section',
     212                                    'label' => __( 'Padding', 'zaso' ),
     213                                    'hide' => true,
     214                                    'fields' => array(
     215                                        'top' => array(
     216                                            'type' => 'measurement',
     217                                            'label' => __( 'Top', 'zaso' ),
     218                                            'default' => '1em'
     219                                        ),
     220                                        'right' => array(
     221                                            'type' => 'measurement',
     222                                            'label' => __( 'Right', 'zaso' ),
     223                                            'default' => '1.2em'
     224                                        ),
     225                                        'bottom' => array(
     226                                            'type' => 'measurement',
     227                                            'label' => __( 'Bottom', 'zaso' ),
     228                                            'default' => '0.5em'
     229                                        ),
     230                                        'left' => array(
     231                                            'type' => 'measurement',
     232                                            'label' => __( 'Left', 'zaso' ),
     233                                            'default' => '1.2em'
     234                                        ),
     235                                    ),
     236                                ),
     237                            ),
     238                        ),
    57239                    ),
    58240                ),
    59                 'item_behavior_options' => array(
    60                     'type' => 'select',
    61                     'label' => __( 'Item Behavior Options', 'zaso' ),
    62                     'description' => __( 'Select item behavior. [Default: Open single item only]', 'zaso' ),
    63                     'default' => '1',
    64                     'options' => array(
    65                       'single' => __( 'Open single item only', 'zaso' ),
    66                       'multiple' => __( 'Allow multiple items open', 'zaso' )
    67                     ),
    68                 ),
    69                 'extra_class' => array(
    70                     'type'        => 'text',
    71                     'label'       => __( 'Extra Class', 'zaso' ),
    72                     'description' => __( 'Add an extra class for styling overrides. [Default: none]', 'zaso' ),
    73                 )
    74241            ),
    75242            ZASO_WIDGET_BASIC_DIR
     
    78245    }
    79246
     247    function get_less_variables( $instance ) {
     248
     249        $design = $instance['design'];
     250        return array(
     251            // accordion title vars
     252            'title_background_color' => $design['heading']['title_background_color'],
     253            'title_background_color_hover' => $design['heading']['title_background_color_hover'],
     254            'title_font_color' => $design['heading']['title_font_color'],
     255            'title_font_weight' => $design['heading']['title_font_weight'],
     256            'title_margin' => sprintf( '%s %s %s %s',
     257                $design['heading']['title_margin']['top'],
     258                $design['heading']['title_margin']['right'],
     259                $design['heading']['title_margin']['bottom'],
     260                $design['heading']['title_margin']['left'] ),
     261            'title_padding' => sprintf( '%s %s %s %s',
     262                $design['heading']['title_padding']['top'],
     263                $design['heading']['title_padding']['right'],
     264                $design['heading']['title_padding']['bottom'],
     265                $design['heading']['title_padding']['left'] ),
     266
     267            // accordion content vars
     268            'content_background_color' => $design['panels']['content_background_color'],
     269            'content_font_size' => $design['panels']['content_font_size'],
     270            'content_font_color' => $design['panels']['content_font_color'],
     271            'content_margin' => sprintf( '%s %s %s %s',
     272                $design['panels']['content_margin']['top'],
     273                $design['panels']['content_margin']['right'],
     274                $design['panels']['content_margin']['bottom'],
     275                $design['panels']['content_margin']['left'] ),
     276            'content_padding' => sprintf( '%s %s %s %s',
     277                $design['panels']['content_padding']['top'],
     278                $design['panels']['content_padding']['right'],
     279                $design['panels']['content_padding']['bottom'],
     280                $design['panels']['content_padding']['left'] ),
     281        );
     282
     283    }
     284
    80285    function initialize() {
    81 
    82         $this->register_frontend_styles(
    83             array(
    84                 array(
    85                     'zen-addons-siteorigin-simple-accordion',
    86                     ZASO_WIDGET_BASIC_DIR . basename( dirname( __FILE__ ) ) . '/css/style.css',
    87                     array(),
    88                     ZASO_VERSION
    89                 )
    90             )
    91         );
    92286
    93287        $this->register_frontend_scripts(
  • zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-spacer-widgets/tpl/default.php

    r1739278 r1758623  
    44 * @since 1.0.0
    55 */
    6 ?>
    76
    8 <div class="zaso-spacer <?php echo $instance['extra_class']; ?>">
     7$zaso_spacer_extra_id = ( ! empty( $instance['extra_id'] ) ) ? $instance['extra_id'] : ''; ?>
     8
     9<div <?php printf( 'id="%s"', $zaso_spacer_extra_id ); ?> class="zaso-spacer <?php echo $instance['extra_class']; ?>">
    910    <div class="zaso-spacer__block" style="<?php printf( 'height: %1$s', $instance['height'] ); ?>"></div>
    1011</div>
  • zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-spacer-widgets/zaso-spacer-widgets.php

    r1739278 r1758623  
    33 * Widget Name: ZASO - Spacer
    44 * Widget ID: zen-addons-siteorigin-spacer
    5  * Description: Create empty space between elements.
     5 * Description: Create an empty space between elements.
    66 * Author: DopeThemes
    7  * Author URI: http://wordpress.dopethemes.com
     7 * Author URI: http://www.dopethemes.com/
    88 */
    99
     
    1919            __( 'ZASO - Spacer', 'zaso' ),
    2020            array(
    21                 'description'   => __( 'Create empty space between elements.', 'zaso' ),
    22                 'help'          => 'http://wordpress.dopethemes.com/',
     21                'description'   => __( 'Create an empty space between elements.', 'zaso' ),
     22                'help'          => 'http://www.dopethemes.com/',
    2323                'panels_groups' => array('zaso-plugin-widgets')
    2424            ),
     
    3131                    'description' => __( 'Set empty space height.', 'zaso' ),
    3232                ),
     33                'extra_id' => array(
     34                    'type'        => 'text',
     35                    'label'       => __( 'Extra ID', 'zaso' ),
     36                    'description' => __( 'Add an extra ID.', 'zaso' ),
     37                ),
    3338                'extra_class' => array(
    3439                    'type'        => 'text',
    3540                    'label'       => __( 'Extra Class', 'zaso' ),
    3641                    'description' => __( 'Add an extra class for styling overrides.', 'zaso' ),
     42                ),
     43                'design' => array(
     44                    'type' =>  'section',
     45                    'label' => __( 'Design', 'zaso' ),
     46                    'hide' => true,
     47                    'fields' => array(
     48                        'background_color' => array(
     49                            'type' => 'color',
     50                            'label' => __( 'Background Color', 'zaso' ),
     51                            'default' => ''
     52                        )
     53                    )
    3754                )
    3855            ),
     
    4259    }
    4360
     61    function get_less_variables( $instance ) {
     62
     63        return array(
     64            'background_color' => $instance['design']['background_color']
     65        );
     66
     67    }
     68
    4469    function initialize() {
    45 
    46         $this->register_frontend_styles(
    47             array(
    48                 array(
    49                     'zen-addons-siteorigin-spacer',
    50                     ZASO_WIDGET_BASIC_DIR . basename( dirname( __FILE__ ) ) . '/css/style.css',
    51                     array(),
    52                     ZASO_VERSION
    53                 )
    54             )
    55         );
    5670
    5771    }
  • zen-addons-for-siteorigin-page-builder/trunk/package.json

    r1739278 r1758623  
    11{
    2   "name": "zen-addons-siteorigin",
    3   "version": "1.0.0",
    4   "description": "=== Zen Addons for SiteOrigin Page Builder ===\r Contributors: ksym04\r Tags: zas, zen, addons, siteorigin, widgets, form, repeater, content, page, builder\r Requires at least: 3.6.0\r Tested up to: 4.9.0\r Stable tag: 4.4.11\r License: GPLv2 or later\r License URI: http://www.gnu.org/licenses/gpl-2.0.html",
     2  "name": "zen-addons-for-siteorigin-page-builder",
     3  "version": "1.0.1",
     4  "description": "=== Zen Addons for SiteOrigin Page Builder ===\r Contributors: ksym04\r Tags: zas, zen, addons, siteorigin, zaso, widgets, form, repeater, content, page, builder\r Requires at least: 3.6.0\r Tested up to: 4.8.3\r Stable tag: 1.0.1\r License: GPLv2 or later\r License URI: license.txt",
    55  "main": "gulpfile.js",
    66  "scripts": {
     
    99  "repository": {
    1010    "type": "git",
    11     "url": "git+https://pkvillanueva@bitbucket.org/KSym04/zen-addons-siteorigin.git"
     11    "url": "git+https://github.com/KSym04/zen-addons-for-siteorigin-page-builder.git"
    1212  },
    1313  "author": "",
    1414  "license": "ISC",
    15   "homepage": "https://bitbucket.org/KSym04/zen-addons-siteorigin#readme",
     15  "homepage": "https://github.com/KSym04/zen-addons-for-siteorigin-page-builder",
    1616  "devDependencies": {
    1717    "autoprefixer": "^7.1.4",
  • zen-addons-for-siteorigin-page-builder/trunk/readme.txt

    r1739302 r1758623  
    11=== Zen Addons for SiteOrigin Page Builder ===
    22Contributors: ksym04
    3 Tags: zas, zen, addons, siteorigin, widgets, form, repeater, content, page, builder
     3Tags: zas, zen, addons, siteorigin, zaso, widgets, form, repeater, content, page, builder
    44Requires at least: 3.6.0
    5 Tested up to: 4.8.2
    6 Stable tag: 1.0.0
     5Tested up to: 4.8.3
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
     8License URI: license.txt
    99
    10 Ultimate collection of functional, professional and intuitive widgets extension for SiteOrigin.
     10An ultimate collection of functional, professional and intuitive widgets extension for SiteOrigin.
    1111
    1212== Description ==
     
    1515
    1616= Widget Features =
    17 * Spacer, create empty space between elements.
    18 * Simple Accordion, create vertically stacked list of items.
     17* Spacer, create an empty space between elements.
     18* Simple Accordion, create a vertically stacked list of items.
    1919
    2020Once you enable the extension widget, you’ll be able to use it anywhere standard widgets are used. You can manage your widgets by going to Plugins > SiteOrigin Widgets in your WordPress admin backend.
     21
    2122
    2223== Installation ==
     
    2829Note: Our widgets have prefix name 'ZASO -' indicating our SiteOrigin plugin extension.
    2930
     31
    3032== Changelog ==
     33= 1.0.1 =
     34* Added simple accordion design panel
     35* Added spacer design panel
     36* Added field 'Extra ID' on widgets
     37* Fixed minor issue
     38* Added en_US language file
    3139
    3240= 1.0.0 =
    33 [03/23/2017]
    3441* Initial Release
     42
     43
     44== Language Support ==
     45- English
  • zen-addons-for-siteorigin-page-builder/trunk/zen-addons-siteorigin.php

    r1739278 r1758623  
    22/*
    33Plugin Name: Zen Addons for SiteOrigin Page Builder
    4 Description: Ultimate collection of functional, professional and intuitive widgets extension for SiteOrigin.
    5 Version: 1.0.0
     4Description: An ultimate collection of functional, professional and intuitive widgets extension for SiteOrigin.
     5Version: 1.0.1
     6Author: DopeThemes
     7Author URI: http://www.dopethemes.com/
     8Plugin URI: http://www.dopethemes.com/downloads/zen-addons-siteorigin/
     9Copyright: DopeThemes
    610Text Domain: zaso
    711Domain Path: /lang
    8 Author: DopeThemes
    9 Copyright: DopeThemes
    1012License: GPLv2 or later
    11 License URI: http://www.gnu.org/licenses/gpl-2.0.html
    12 Author URI: http://wordpress.dopethemes.com
    13 Plugin URI: http://wordpress.dopethemes.com/zen-addons-siteorigin/
    14 Domain Path: /lang
     13License URI: license.txt
    1514*/
    1615
     
    2322
    2423    // vars
    25     var $version = '1.0.0';
     24    var $version = '1.0.1';
    2625
    2726    /*
     
    112111
    113112        // register
    114         wp_register_style( 'zen-addons-base', ZASO_BASE_DIR . 'assets/css/main.min.css', array(), ZASO_VERSION );
     113        wp_register_style( 'zen-addons-base', ZASO_BASE_DIR . 'assets/css/main.css', array(), ZASO_VERSION );
    115114
    116115        // init
     
    130129
    131130        // register
    132         wp_register_script( 'zen-addons-base', ZASO_BASE_DIR . 'assets/js/main.min.js', array('jquery'), ZASO_VERSION );
     131        wp_register_script( 'zen-addons-base', ZASO_BASE_DIR . 'assets/js/main.js', array('jquery'), ZASO_VERSION );
    133132
    134133        // init
Note: See TracChangeset for help on using the changeset viewer.