Plugin Directory

Changeset 2459568


Ignore:
Timestamp:
01/20/2021 10:29:52 AM (5 years ago)
Author:
93digital
Message:

Bug fix to patch a legacy bug from 1.3.1 which caused html elements to not to be rendered correctly within the typed text

Location:
animated-typing-effect
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • animated-typing-effect/tags/1.3/typingeffect.php

    r1743936 r2459568  
    22/**
    33 * Plugin Name: Typing Effect
    4  * Version: 1.3
     4 * Version: 1.3.5
    55 * Plugin URI: http://93digital.co.uk/
    66 * Description: Animated typing effect plugin, allowing you to generate a shortcode that 'types' out words on your page or post. Based on Typed.js by Matt Boldt.
     
    1414/**
    1515 * Typing Effect Plugin
    16  * Copyright (C) 2015, 93digital - support@93digital.co.uk
     16 * Copyright (C) 2021, 93digital - support@93digital.co.uk
    1717 *
    1818 * This program is free software: you can redistribute it and/or modify
  • animated-typing-effect/trunk/README.txt

    r2458457 r2459568  
    5050== Changelog ==
    5151
     52= 1.3.5 =
     53* Bug fix to patch a legacy bug from 1.3.1 which caused html elements to not to be rendered correctly within the typed text. This bug was not related to the one patched in 1.3.4.
     54
    5255= 1.3.4 =
    5356* Bug fix which caused HTML elements to be escaped. This bug occured in the 1.3.3 release.
  • animated-typing-effect/trunk/assets/js/typed.admin.js

    r1818855 r2459568  
    9696        values.forEach( function( v ) {
    9797          // Replace & with & otherwise the browser freezes.
     98          var v = v.replace('&', '&'); // in case the user already used &
     99          v = v.replace('&', '&');
    98100          v = v.replace(/"/g, '"');
    99           v = v.replace('&', '&'); // in case the user already used &
    100           v = v.replace('&', '&');
    101101          shortcode += " string" + i + "=\"" + v + "\"";
    102102
  • animated-typing-effect/trunk/assets/js/typed.fe.js

    r1822045 r2459568  
    55      for( var key in this.dataset ) {
    66        if( key.substr( 0, 6 ) == "string" ) {
    7           var v = this.dataset[ key ].replace( /"/g, '"' );
     7          var v = this.dataset[ key ].replace('&', '&'); // in case the user already used &
     8          v = v.replace( /"/g, '"' );
    89          // Replace & with & otherwise the browser freezes.
    9           v = v.replace(/"/g, '"');
    10           v = v.replace('&', '&'); // in case the user already used &
    1110          v = v.replace('&', '&');
    12 
    1311          strings.push( v );
    1412        } else {
  • animated-typing-effect/trunk/typingeffect.php

    r2458457 r2459568  
    22/**
    33 * Plugin Name: Typing Effect
    4  * Version: 1.3.4
     4 * Version: 1.3
    55 * Plugin URI: http://93digital.co.uk/
    66 * Description: Animated typing effect plugin, allowing you to generate a shortcode that 'types' out words on your page or post. Based on Typed.js by Matt Boldt.
     
    1414/**
    1515 * Typing Effect Plugin
    16  * Copyright (C) 2020, 93digital - support@93digital.co.uk
     16 * Copyright (C) 2015, 93digital - support@93digital.co.uk
    1717 *
    1818 * This program is free software: you can redistribute it and/or modify
Note: See TracChangeset for help on using the changeset viewer.