Changeset 1587726
- Timestamp:
- 02/03/2017 12:00:14 AM (9 years ago)
- Location:
- indent-lists-button
- Files:
-
- 9 added
- 2 edited
-
tags/0.1.31 (added)
-
tags/0.1.31/css (added)
-
tags/0.1.31/css/admin (added)
-
tags/0.1.31/css/admin/ili-admin.css (added)
-
tags/0.1.31/ili-indent-lists-button.php (added)
-
tags/0.1.31/js (added)
-
tags/0.1.31/js/mce-plugin.js (added)
-
tags/0.1.31/languages (added)
-
tags/0.1.31/readme.txt (added)
-
trunk/ili-indent-lists-button.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
indent-lists-button/trunk/ili-indent-lists-button.php
r1580341 r1587726 2 2 /* 3 3 * Plugin Name: Indent Lists Button 4 * Version: 0.1.3 4 * Version: 0.1.31 5 5 * Plugin URI: http://www.elisewebredactie.nl/indent-lists-button 6 6 * Author: Klaas van der Linden … … 33 33 add_filter ( 'mce_buttons_2', array($this,'add_button') ); 34 34 } 35 // Make sure the right translations are loaded 35 36 function load_plugin_textdomain() { 36 37 load_plugin_textdomain ( 'indent-lists-button', FALSE, basename ( dirname ( __FILE__ ) ) . '/languages/' ); … … 41 42 return $plugin_array; 42 43 } 43 // Tell wordpress to add a button to its tinymce editor, the details of which are contained in the tinymce external plugin 'ili_mce_plugin ' registered earlier44 // Tell wordpress to add a button to its tinymce editor, the details of which are contained in the tinymce external plugin 'ili_mce_plugin.js' registered earlier 44 45 function add_button($buttons) { 45 46 if (in_array ( 'indent', $buttons )) { … … 57 58 return $buttons; 58 59 } 59 // Add padding:40pxto frontend lists having class 'ili-indent'.60 // Add the new list css (see $this->css above in constructor) to frontend lists having class 'ili-indent'. 60 61 function frontend_css() { 61 62 ?> -
indent-lists-button/trunk/readme.txt
r1580326 r1587726 46 46 == Changelog == 47 47 48 = 0.1.31 (2017-01-17) = 49 50 * Minor adjustments; new Wordpress update checked and verified 51 48 52 = 0.1.3 (2017-01-17) = 49 53
Note: See TracChangeset
for help on using the changeset viewer.