Changeset 185297
- Timestamp:
- 12/20/2009 12:28:57 PM (16 years ago)
- Location:
- page-tagger/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
page-tagger.js (modified) (2 diffs)
-
page-tagger.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
page-tagger/trunk/README.txt
r185289 r185297 6 6 Requires at least: 2.8.4 7 7 Tested up to: 2.9 8 Stable tag: 0.3. 38 Stable tag: 0.3.4 9 9 10 10 Page Tagger is a Wordpress plugin which lets you tag your pages just like you do with your posts. It adds a tagging widget in the page-editing view in the admin interface. … … 23 23 24 24 == Changelog == 25 26 = 0.3.4 (Dec 20, 2009) = 27 * Fixed to work with Wordpress 2.9 25 28 26 29 = 0.3.3 (Nov 20, 2009) = -
page-tagger/trunk/page-tagger.js
r175474 r185297 3 3 Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/ 4 4 Description: Enables tagging for pages. 5 Version: 0.3. 35 Version: 0.3.4 6 6 Author: Ramesh Nair 7 7 Author URI: http://www.hiddentao.com/ … … 86 86 function tag_save_on_publish() { 87 87 jQuery('.tagsdiv').each( function(i) { 88 if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') ) 88 if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') ) { 89 89 tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id')); 90 } ); 90 } else { 91 // just in case tag_flush_to_text gets called later on anyway 92 jQuery(this).find('input.newtag').val(''); 93 } 94 } ); 91 95 } 92 96 -
page-tagger/trunk/page-tagger.php
r175474 r185297 22 22 Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/ 23 23 Description: Enables tagging for pages. 24 Version: 0.3. 324 Version: 0.3.4 25 25 Author: Ramesh Nair 26 26 Author URI: http://www.hiddentao.com/
Note: See TracChangeset
for help on using the changeset viewer.