PluginProbe
Ko-fi Button / trunk
Ko-fi Button vtrunk
1.4.1 trunk 1.0.2 1.0.3 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.10 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0
ko-fi-button / js / widget.js

widget.js in Ko-fi Button trunk, at js/widget.js

13 lines 427 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery( document ).ready( function() {
2 jQuery( '.ko-fi-button' ).each( function() {
3 var $this = jQuery( this );
4 var title = $this.data( 'title' );
5 kofiwidget2.init( $this.data( 'text' ), $this.data( 'color' ), $this.data( 'code' ) );
6 $html = kofiwidget2.getHTML();
7 if ( title ) {
8 $html = $html.replace( 'title="Support me on ko-fi.com"', 'title="' + title + '"' );
9 }
10 $this.html( $html );
11 });
12 });
13