Changeset 506909
- Timestamp:
- 02/18/2012 10:57:14 AM (14 years ago)
- Location:
- jquery-post-preview
- Files:
-
- 7 added
- 3 edited
-
tags/0.2 (added)
-
tags/0.2/jquery-post-preview-ru_RU.mo (added)
-
tags/0.2/jquery-post-preview.css (added)
-
tags/0.2/jquery-post-preview.php (added)
-
tags/0.2/jquery-post-preview.pot (added)
-
tags/0.2/readme.txt (added)
-
tags/0.2/screenshot-1.png (added)
-
trunk/jquery-post-preview.css (modified) (3 diffs)
-
trunk/jquery-post-preview.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jquery-post-preview/trunk/jquery-post-preview.css
r105713 r506909 3 3 padding-right: 150px !important; 4 4 } 5 * html #ed_toolbar {height: 1%} 6 5 #wp-content-editor-container { 6 position: relative; 7 } 7 8 #preview-tab { 8 9 position: absolute; … … 15 16 padding: 2px 4px; 16 17 font-size: 12px; 17 -moz-border-radius: 3px;18 -khtml-border-radius: 3px;19 -webkit-border-radius: 3px;20 18 border-radius: 3px; 21 19 background: #FFF url("../../../wp-admin/images/fade-butt.png") repeat-x 0 -2px; 22 20 cursor: pointer; 23 color: #203E56; 21 } 22 #wp-content-editor-container #preview-tab { 23 top: 3px; 24 24 } 25 25 #preview-tab:hover { … … 28 28 color: #000; 29 29 } 30 31 30 #textarea_clone { 32 31 height: 0; 33 32 overflow: hidden; 34 33 } 35 36 34 #content_preview { 37 35 background: #FFF; 38 padding: 5px 6px7px;36 padding: 10px 10px 17px; 39 37 overflow: auto; 40 38 font-size: 13px; -
jquery-post-preview/trunk/jquery-post-preview.php
r129387 r506909 4 4 Plugin URI: http://articlesss.com/jquery-post-preview-wordpress-plugin/ 5 5 Description: Live post preview on "Write/Edit post" page of WordPress admin area using jQuery. 6 Version: 0. 16 Version: 0.2 7 7 Author: Dimox 8 Author URI: http://dimox.n ame/8 Author URI: http://dimox.net/ 9 9 */ 10 10 … … 35 35 var textarea_height = $j(textarea).height(); 36 36 37 $j('#ed_toolbar').append('<input type="button" id="preview-tab" value="'+show_text+'" />'); 38 //$j(textarea).after('<textarea id="textarea_test" cols="170%" rows="20"></textarea>'); 37 if ( $j('#wp-content-editor-container').length ) { 38 $j('#wp-content-editor-container').append('<input type="button" id="preview-tab" value="'+show_text+'" />'); 39 } else { 40 $j('#ed_toolbar').append('<input type="button" id="preview-tab" value="'+show_text+'" />'); 41 } 39 42 40 43 $j('#preview-tab').toggle( … … 65 68 $j('#content_preview').html(content_preview); 66 69 67 //$j('#textarea_test').text($j('#content_preview').html());68 70 }, 69 71 function() { -
jquery-post-preview/trunk/readme.txt
r156398 r506909 1 1 === jQuery Post Preview === 2 2 Contributors: Dimox 3 Donate link: http ://daopay.com/payment/?appcode=53988&prodcode=13 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H7X3M4JL8N7Q4 4 4 Tags: jQuery, post, preview, admin 5 5 Requires at least: 2.5 6 6 Tested up to: 7 Stable tag: 0. 17 Stable tag: 0.2 8 8 9 9 Live post preview on "Write/Edit post" page of WordPress admin area using jQuery. … … 25 25 26 26 1. jQuery Post Preview in action 27 28 == Changelog == 29 30 = 0.2 = 31 * Changes to work with WordPress 3.3. 32 33 = 0.1 = 34 * The initial version.
Note: See TracChangeset
for help on using the changeset viewer.