Changeset 1479148
- Timestamp:
- 08/19/2016 10:42:39 PM (9 years ago)
- Location:
- wp-morphext
- Files:
-
- 8 edited
- 2 copied
-
tags/1.1 (copied) (copied from wp-morphext/trunk)
-
tags/1.2 (copied) (copied from wp-morphext/trunk)
-
tags/1.2/README.md (modified) (2 diffs)
-
tags/1.2/js/morphext.min.js (modified) (1 diff)
-
tags/1.2/readme.txt (modified) (2 diffs)
-
tags/1.2/wp-morphext.php (modified) (1 diff)
-
trunk/README.md (modified) (2 diffs)
-
trunk/js/morphext.min.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-morphext.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-morphext/tags/1.2/README.md
r1394709 r1479148 2 2 3 3 ## About 4 WP Morphext is a WordPress Plugin which creates a shortcode for easy access to the Morphext text animation library.4 WP Morphext is a WordPress Plugin that allows for users to add shortcodes to animate text on their website. The plugin uses shortcodes to provide a native WordPress interface for using the morphext.js and animate.css libraries. 5 5 6 6 ## Usage … … 26 26 ## Changelog 27 27 28 ### 1.2 29 * Updated morphext.js from v2.4.4 to v2.4.5 30 28 31 ### 1.1 29 32 * Now capable of displaying multiple animated shortcodes on single page. -
wp-morphext/tags/1.2/js/morphext.min.js
r1394709 r1479148 1 /*! Morphext - v2.4. 4 - 2015-05-21*/!function(a){"use strict";function b(b,c){this.element=a(b),this.settings=a.extend({},d,c),this._defaults=d,this._init()}var c="Morphext",d={animation:"bounceIn",separator:",",speed:2e3,complete:a.noop};b.prototype={_init:function(){var b=this;this.phrases=[],this.element.addClass("morphext"),a.each(this.element.text().split(this.settings.separator),function(c,d){b.phrases.push(a.trim(d))}),this.index=-1,this.animate(),this.start()},animate:function(){this.index=++this.index%this.phrases.length,this.element[0].innerHTML='<span class="animated '+this.settings.animation+'">'+this.phrases[this.index]+"</span>",a.isFunction(this.settings.complete)&&this.settings.complete.call(this)},start:function(){var a=this;this._interval=setInterval(function(){a.animate()},this.settings.speed)},stop:function(){this._interval=clearInterval(this._interval)}},a.fn[c]=function(d){return this.each(function(){a.data(this,"plugin_"+c)||a.data(this,"plugin_"+c,new b(this,d))})}}(jQuery);1 /*! Morphext - v2.4.5 - 2015-08-26 */!function(a){"use strict";function b(b,c){this.element=a(b),this.settings=a.extend({},d,c),this._defaults=d,this._init()}var c="Morphext",d={animation:"bounceIn",separator:",",speed:2e3,complete:a.noop};b.prototype={_init:function(){var b=this;this.phrases=[],this.element.addClass("morphext"),a.each(this.element.text().split(this.settings.separator),function(c,d){b.phrases.push(a.trim(d))}),this.index=-1,this.animate(),this.start()},animate:function(){this.index=++this.index%this.phrases.length,this.element[0].innerHTML='<span class="animated '+this.settings.animation+'">'+this.phrases[this.index]+"</span>",a.isFunction(this.settings.complete)&&this.settings.complete.call(this)},start:function(){var a=this;this._interval=setInterval(function(){a.animate()},this.settings.speed)},stop:function(){this._interval=clearInterval(this._interval)}},a.fn[c]=function(d){return this.each(function(){a.data(this,"plugin_"+c)||a.data(this,"plugin_"+c,new b(this,d))})}}(jQuery); -
wp-morphext/tags/1.2/readme.txt
r1394763 r1479148 3 3 Tags: shortcode, text, animation 4 4 Requires at least: 3.0.1 5 Tested up to: 4. 55 Tested up to: 4.6 6 6 Stable tag: trunk 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 10 WP Morphext is a WordPress Plugin which creates a shortcode for easy access to the Morphext text animation library.10 WP Morphext is a WordPress Plugin that allows for users to add shortcodes to animate text on their website. The plugin uses shortcodes to provide a native WordPress interface for using the morphext.js and animate.css libraries. 11 11 12 12 **Options** … … 38 38 == Changelog == 39 39 40 = 1.2 = 41 * Updated morphext.js from v2.4.4 to v2.4.5 42 40 43 = 1.1 = 41 44 * Now capable of displaying multiple animated shortcodes on single page. -
wp-morphext/tags/1.2/wp-morphext.php
r1394709 r1479148 5 5 * Plugin URI: https://nategay.me/ 6 6 * Description: WP Morphext adds easy shortcode access to the Morphext text animation library. Example use: [wpmorphext animation="fadeIn" speed="3000" text="Example 1, Example 2, etc"] 7 * Version: 1. 17 * Version: 1.2 8 8 * Author: Nate Gay 9 9 * Author URI: https://nategay.me/ -
wp-morphext/trunk/README.md
r1394709 r1479148 2 2 3 3 ## About 4 WP Morphext is a WordPress Plugin which creates a shortcode for easy access to the Morphext text animation library.4 WP Morphext is a WordPress Plugin that allows for users to add shortcodes to animate text on their website. The plugin uses shortcodes to provide a native WordPress interface for using the morphext.js and animate.css libraries. 5 5 6 6 ## Usage … … 26 26 ## Changelog 27 27 28 ### 1.2 29 * Updated morphext.js from v2.4.4 to v2.4.5 30 28 31 ### 1.1 29 32 * Now capable of displaying multiple animated shortcodes on single page. -
wp-morphext/trunk/js/morphext.min.js
r1394709 r1479148 1 /*! Morphext - v2.4. 4 - 2015-05-21*/!function(a){"use strict";function b(b,c){this.element=a(b),this.settings=a.extend({},d,c),this._defaults=d,this._init()}var c="Morphext",d={animation:"bounceIn",separator:",",speed:2e3,complete:a.noop};b.prototype={_init:function(){var b=this;this.phrases=[],this.element.addClass("morphext"),a.each(this.element.text().split(this.settings.separator),function(c,d){b.phrases.push(a.trim(d))}),this.index=-1,this.animate(),this.start()},animate:function(){this.index=++this.index%this.phrases.length,this.element[0].innerHTML='<span class="animated '+this.settings.animation+'">'+this.phrases[this.index]+"</span>",a.isFunction(this.settings.complete)&&this.settings.complete.call(this)},start:function(){var a=this;this._interval=setInterval(function(){a.animate()},this.settings.speed)},stop:function(){this._interval=clearInterval(this._interval)}},a.fn[c]=function(d){return this.each(function(){a.data(this,"plugin_"+c)||a.data(this,"plugin_"+c,new b(this,d))})}}(jQuery);1 /*! Morphext - v2.4.5 - 2015-08-26 */!function(a){"use strict";function b(b,c){this.element=a(b),this.settings=a.extend({},d,c),this._defaults=d,this._init()}var c="Morphext",d={animation:"bounceIn",separator:",",speed:2e3,complete:a.noop};b.prototype={_init:function(){var b=this;this.phrases=[],this.element.addClass("morphext"),a.each(this.element.text().split(this.settings.separator),function(c,d){b.phrases.push(a.trim(d))}),this.index=-1,this.animate(),this.start()},animate:function(){this.index=++this.index%this.phrases.length,this.element[0].innerHTML='<span class="animated '+this.settings.animation+'">'+this.phrases[this.index]+"</span>",a.isFunction(this.settings.complete)&&this.settings.complete.call(this)},start:function(){var a=this;this._interval=setInterval(function(){a.animate()},this.settings.speed)},stop:function(){this._interval=clearInterval(this._interval)}},a.fn[c]=function(d){return this.each(function(){a.data(this,"plugin_"+c)||a.data(this,"plugin_"+c,new b(this,d))})}}(jQuery); -
wp-morphext/trunk/readme.txt
r1394763 r1479148 3 3 Tags: shortcode, text, animation 4 4 Requires at least: 3.0.1 5 Tested up to: 4. 55 Tested up to: 4.6 6 6 Stable tag: trunk 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 10 WP Morphext is a WordPress Plugin which creates a shortcode for easy access to the Morphext text animation library.10 WP Morphext is a WordPress Plugin that allows for users to add shortcodes to animate text on their website. The plugin uses shortcodes to provide a native WordPress interface for using the morphext.js and animate.css libraries. 11 11 12 12 **Options** … … 38 38 == Changelog == 39 39 40 = 1.2 = 41 * Updated morphext.js from v2.4.4 to v2.4.5 42 40 43 = 1.1 = 41 44 * Now capable of displaying multiple animated shortcodes on single page. -
wp-morphext/trunk/wp-morphext.php
r1394709 r1479148 5 5 * Plugin URI: https://nategay.me/ 6 6 * Description: WP Morphext adds easy shortcode access to the Morphext text animation library. Example use: [wpmorphext animation="fadeIn" speed="3000" text="Example 1, Example 2, etc"] 7 * Version: 1. 17 * Version: 1.2 8 8 * Author: Nate Gay 9 9 * Author URI: https://nategay.me/
Note: See TracChangeset
for help on using the changeset viewer.