Plugin Directory

Changeset 2223993


Ignore:
Timestamp:
01/08/2020 07:37:23 AM (6 years ago)
Author:
heyjackmail
Message:

jackmail-newsletters 1.2.3

Location:
jackmail-newsletters
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • jackmail-newsletters/tags/1.2.3/jackmail-newsletters.php

    r2192482 r2223993  
    44Plugin URI: https://www.jackmail.com
    55Description: Create and send responsive newsletter with a professional routing platform and a lot of features: automated emails and newsletters, statistics, email & Live Support etc.
    6 Version: 1.2.2
     6Version: 1.2.3
    77Author: Jackmail
    88Author URI: https://www.jackmail.com
  • jackmail-newsletters/tags/1.2.3/js/controllers.js

    r2161892 r2223993  
    56905690            for ( i = 0; i < nb_templates; i++ ) {
    56915691                var j;
    5692                 var nb_categories = data[ i ].categories.length;
    5693                 for ( j = 0; j < nb_categories; j++ ) {
    5694                     var category = data[ i ].categories[ j ];
    5695                     if ( templates_gallery_categories.indexOf( category ) === -1 ) {
    5696                         templates_gallery_categories.push( category );
     5692                if (data[ i ].categories) {
     5693                    var nb_categories = data[ i ].categories.length;
     5694                    for ( j = 0; j < nb_categories; j++ ) {
     5695                        var category = data[ i ].categories[ j ];
     5696                        if ( templates_gallery_categories.indexOf( category ) === -1 ) {
     5697                            templates_gallery_categories.push( category );
     5698                        }
    56975699                    }
    56985700                }
     
    59085910    } ] );
    59095911
     5912
    59105913angular.module( 'jackmail.controllers' ).controller( 'WoocommerceEmailNotificationChoiceController', [
    59115914    '$rootScope', 'UrlService',
  • jackmail-newsletters/tags/1.2.3/js/services.js

    r2161892 r2223993  
    22912291                        if ( content_is_loading === false ) {
    22922292                            promise = window.angularComponentRef.zone.run( function() {
    2293                                 return window.angularComponentRef.component.exportHtml();
     2293                                return window.angularComponentRef.component.exportHtml(false, false);
    22942294                            } );
    22952295                        }
  • jackmail-newsletters/tags/1.2.3/readme.txt

    r2192482 r2223993  
    55Tested up to: 5.2
    66Requires PHP : 5.4
    7 Stable tag: 1.2.2
     7Stable tag: 1.2.3
    88License: GPLv2
    99
     
    160160== Changelog ==
    161161
     162= 1.2.3 =
     163* Fix custom link in WooCommerce email template
     164
    162165= 1.2.2 =
    163166* Fix AngularJS loading conflict with MonsterInsight plugin
  • jackmail-newsletters/trunk/jackmail-newsletters.php

    r2192482 r2223993  
    44Plugin URI: https://www.jackmail.com
    55Description: Create and send responsive newsletter with a professional routing platform and a lot of features: automated emails and newsletters, statistics, email & Live Support etc.
    6 Version: 1.2.2
     6Version: 1.2.3
    77Author: Jackmail
    88Author URI: https://www.jackmail.com
  • jackmail-newsletters/trunk/js/controllers.js

    r2161892 r2223993  
    56905690            for ( i = 0; i < nb_templates; i++ ) {
    56915691                var j;
    5692                 var nb_categories = data[ i ].categories.length;
    5693                 for ( j = 0; j < nb_categories; j++ ) {
    5694                     var category = data[ i ].categories[ j ];
    5695                     if ( templates_gallery_categories.indexOf( category ) === -1 ) {
    5696                         templates_gallery_categories.push( category );
     5692                if (data[ i ].categories) {
     5693                    var nb_categories = data[ i ].categories.length;
     5694                    for ( j = 0; j < nb_categories; j++ ) {
     5695                        var category = data[ i ].categories[ j ];
     5696                        if ( templates_gallery_categories.indexOf( category ) === -1 ) {
     5697                            templates_gallery_categories.push( category );
     5698                        }
    56975699                    }
    56985700                }
     
    59085910    } ] );
    59095911
     5912
    59105913angular.module( 'jackmail.controllers' ).controller( 'WoocommerceEmailNotificationChoiceController', [
    59115914    '$rootScope', 'UrlService',
  • jackmail-newsletters/trunk/js/services.js

    r2161892 r2223993  
    22912291                        if ( content_is_loading === false ) {
    22922292                            promise = window.angularComponentRef.zone.run( function() {
    2293                                 return window.angularComponentRef.component.exportHtml();
     2293                                return window.angularComponentRef.component.exportHtml(false, false);
    22942294                            } );
    22952295                        }
  • jackmail-newsletters/trunk/readme.txt

    r2192482 r2223993  
    55Tested up to: 5.2
    66Requires PHP : 5.4
    7 Stable tag: 1.2.2
     7Stable tag: 1.2.3
    88License: GPLv2
    99
     
    160160== Changelog ==
    161161
     162= 1.2.3 =
     163* Fix custom link in WooCommerce email template
     164
    162165= 1.2.2 =
    163166* Fix AngularJS loading conflict with MonsterInsight plugin
Note: See TracChangeset for help on using the changeset viewer.