Plugin Directory

Changeset 3411053


Ignore:
Timestamp:
12/04/2025 02:23:07 PM (2 months ago)
Author:
rilwis
Message:

Update to version 1.2.7 from GitHub

Location:
meta-box-text-limiter
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • meta-box-text-limiter/tags/1.2.7/readme.txt

    r3264870 r3411053  
    44Tags: custom fields, meta box, text limit
    55Requires at least: 5.9
    6 Tested up to: 6.7.2
    7 Stable tag: 1.2.6
     6Tested up to: 6.9
     7Stable tag: 1.2.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868== Changelog ==
    6969
     70= 1.2.7 - 2025-12-04 =
     71
     72- Fix not working if a field has prepend value
     73
    7074= 1.2.6 - 2025-04-01 =
    7175- Fix not working for 2 inputs
  • meta-box-text-limiter/tags/1.2.7/text-limiter.js

    r3183484 r3411053  
    1717        initElements: function () {
    1818            this.$input = this.$el.siblings( '.rwmb-text' );
     19            let textWrap = this.$el.siblings( '.rwmb-input-group' );
     20            if ( textWrap.length > 0 ) {
     21                this.$input = textWrap.find( '.rwmb-text' );
     22            }
    1923            if ( !this.$input.length ) {
    2024                this.$input = this.$el.siblings( '.rwmb-textarea' );
  • meta-box-text-limiter/tags/1.2.7/text-limiter.php

    r3264870 r3411053  
    44 * Plugin URI:  https://metabox.io/plugins/meta-box-text-limiter/
    55 * Description: Limit number of characters or words entered for text, textarea, and wysiwyg fields.
    6  * Version:     1.2.6
     6 * Version:     1.2.7
    77 * Author:      MetaBox.io
    88 * Author URI:  https://metabox.io
  • meta-box-text-limiter/trunk/readme.txt

    r3264870 r3411053  
    44Tags: custom fields, meta box, text limit
    55Requires at least: 5.9
    6 Tested up to: 6.7.2
    7 Stable tag: 1.2.6
     6Tested up to: 6.9
     7Stable tag: 1.2.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868== Changelog ==
    6969
     70= 1.2.7 - 2025-12-04 =
     71
     72- Fix not working if a field has prepend value
     73
    7074= 1.2.6 - 2025-04-01 =
    7175- Fix not working for 2 inputs
  • meta-box-text-limiter/trunk/text-limiter.js

    r3183484 r3411053  
    1717        initElements: function () {
    1818            this.$input = this.$el.siblings( '.rwmb-text' );
     19            let textWrap = this.$el.siblings( '.rwmb-input-group' );
     20            if ( textWrap.length > 0 ) {
     21                this.$input = textWrap.find( '.rwmb-text' );
     22            }
    1923            if ( !this.$input.length ) {
    2024                this.$input = this.$el.siblings( '.rwmb-textarea' );
  • meta-box-text-limiter/trunk/text-limiter.php

    r3264870 r3411053  
    44 * Plugin URI:  https://metabox.io/plugins/meta-box-text-limiter/
    55 * Description: Limit number of characters or words entered for text, textarea, and wysiwyg fields.
    6  * Version:     1.2.6
     6 * Version:     1.2.7
    77 * Author:      MetaBox.io
    88 * Author URI:  https://metabox.io
Note: See TracChangeset for help on using the changeset viewer.