Changeset 1360098
- Timestamp:
- 02/28/2016 04:52:06 PM (10 years ago)
- Location:
- indent-lists-button
- Files:
-
- 4 edited
-
tags/0.1.1/ili-indent-lists-button.php (modified) (3 diffs)
-
tags/0.1.1/readme.txt (modified) (2 diffs)
-
trunk/ili-indent-lists-button.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indent-lists-button/tags/0.1.1/ili-indent-lists-button.php
r1359649 r1360098 6 6 Author: Klaas van der Linden 7 7 Author URI: https://www.culturalservices.nl/ 8 Description: Indent all Lists!!!9 License: GNU General Public License v2 or later10 License URI: http://www.gnu.org/licenses/gpl-2.0.html11 12 Indent all lists! This plugin is useful if you can�t use the regular indent button to indent a list.13 14 8 */ 15 9 //Direct access to this file is not permitted … … 18 12 define("ILI_URL",plugin_dir_url( __FILE__ )); 19 13 20 //Add new buttons and add the padding:40px-stylesheet to the editor.14 //Add new buttons and add the padding:40px-stylesheet to the wordpress editor iframe. 21 15 add_action( 'init', 'ili_init' ); 22 16 function ili_init() { … … 32 26 } 33 27 34 //Tell wordpress to add a button to its tinymce editor, the details of which are contained in the external pluginregistered earlier28 //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 earlier 35 29 function ili_add_button( $buttons ) { 36 30 if(in_array('indent',$buttons)) -
indent-lists-button/tags/0.1.1/readme.txt
r1360072 r1360098 59 59 In all themes. Some themes (notably Twenty Fifteen and Twenty Sixteen) align lists at the same level as the surrounding text (see [the first screenshot](https://wordpress.org/plugins/indent-lists-button/screenshots/)), in which case it can be quite annoying that you cannot choose to indent lists. 60 60 61 = Isn't there simply an alignment-code I can put in the htmlto indent a list? =61 = Isn't there simply an alignment-code I use to indent a list? = 62 62 63 63 Yes, there is, but it requires knowing and applying the basics of html and css. And we think this button is the most easy way to indent a list. … … 69 69 = Is it possible to undo the indentation of the list? = 70 70 71 Yes. You can undo the indentation by clicking the Indent List button again.71 Yes. You can undo the current indentation by clicking the Indent List button again. 72 72 73 73 == Screenshots == -
indent-lists-button/trunk/ili-indent-lists-button.php
r1359646 r1360098 6 6 Author: Klaas van der Linden 7 7 Author URI: https://www.culturalservices.nl/ 8 Description: Indent all Lists!!!9 License: GNU General Public License v2 or later10 License URI: http://www.gnu.org/licenses/gpl-2.0.html11 12 Indent all lists! This plugin is useful if you can�t use the regular indent button to indent a list.13 14 8 */ 15 9 //Direct access to this file is not permitted … … 18 12 define("ILI_URL",plugin_dir_url( __FILE__ )); 19 13 20 //Add new buttons and add the padding:40px-stylesheet to the editor.14 //Add new buttons and add the padding:40px-stylesheet to the wordpress editor iframe. 21 15 add_action( 'init', 'ili_init' ); 22 16 function ili_init() { … … 32 26 } 33 27 34 //Tell wordpress to add a button to its tinymce editor, the details of which are contained in the external pluginregistered earlier28 //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 earlier 35 29 function ili_add_button( $buttons ) { 36 30 if(in_array('indent',$buttons)) -
indent-lists-button/trunk/readme.txt
r1360072 r1360098 59 59 In all themes. Some themes (notably Twenty Fifteen and Twenty Sixteen) align lists at the same level as the surrounding text (see [the first screenshot](https://wordpress.org/plugins/indent-lists-button/screenshots/)), in which case it can be quite annoying that you cannot choose to indent lists. 60 60 61 = Isn't there simply an alignment-code I can put in the htmlto indent a list? =61 = Isn't there simply an alignment-code I use to indent a list? = 62 62 63 63 Yes, there is, but it requires knowing and applying the basics of html and css. And we think this button is the most easy way to indent a list. … … 69 69 = Is it possible to undo the indentation of the list? = 70 70 71 Yes. You can undo the indentation by clicking the Indent List button again.71 Yes. You can undo the current indentation by clicking the Indent List button again. 72 72 73 73 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.