Changeset 2459568
- Timestamp:
- 01/20/2021 10:29:52 AM (5 years ago)
- Location:
- animated-typing-effect
- Files:
-
- 5 edited
-
tags/1.3/typingeffect.php (modified) (2 diffs)
-
trunk/README.txt (modified) (1 diff)
-
trunk/assets/js/typed.admin.js (modified) (1 diff)
-
trunk/assets/js/typed.fe.js (modified) (1 diff)
-
trunk/typingeffect.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
animated-typing-effect/tags/1.3/typingeffect.php
r1743936 r2459568 2 2 /** 3 3 * Plugin Name: Typing Effect 4 * Version: 1.3 4 * Version: 1.3.5 5 5 * Plugin URI: http://93digital.co.uk/ 6 6 * 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. … … 14 14 /** 15 15 * Typing Effect Plugin 16 * Copyright (C) 20 15, 93digital - support@93digital.co.uk16 * Copyright (C) 2021, 93digital - support@93digital.co.uk 17 17 * 18 18 * This program is free software: you can redistribute it and/or modify -
animated-typing-effect/trunk/README.txt
r2458457 r2459568 50 50 == Changelog == 51 51 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 52 55 = 1.3.4 = 53 56 * 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 96 96 values.forEach( function( v ) { 97 97 // Replace & with & otherwise the browser freezes. 98 var v = v.replace('&', '&'); // in case the user already used & 99 v = v.replace('&', '&'); 98 100 v = v.replace(/"/g, '"'); 99 v = v.replace('&', '&'); // in case the user already used &100 v = v.replace('&', '&');101 101 shortcode += " string" + i + "=\"" + v + "\""; 102 102 -
animated-typing-effect/trunk/assets/js/typed.fe.js
r1822045 r2459568 5 5 for( var key in this.dataset ) { 6 6 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, '"' ); 8 9 // Replace & with & otherwise the browser freezes. 9 v = v.replace(/"/g, '"');10 v = v.replace('&', '&'); // in case the user already used &11 10 v = v.replace('&', '&'); 12 13 11 strings.push( v ); 14 12 } else { -
animated-typing-effect/trunk/typingeffect.php
r2458457 r2459568 2 2 /** 3 3 * Plugin Name: Typing Effect 4 * Version: 1.3 .44 * Version: 1.3 5 5 * Plugin URI: http://93digital.co.uk/ 6 6 * 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. … … 14 14 /** 15 15 * Typing Effect Plugin 16 * Copyright (C) 20 20, 93digital - support@93digital.co.uk16 * Copyright (C) 2015, 93digital - support@93digital.co.uk 17 17 * 18 18 * This program is free software: you can redistribute it and/or modify
Note: See TracChangeset
for help on using the changeset viewer.