Changeset 212218
- Timestamp:
- 03/02/2010 07:32:20 PM (16 years ago)
- Location:
- embed-rss/trunk
- Files:
-
- 2 edited
-
cets_EmbedRSS.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
embed-rss/trunk/cets_EmbedRSS.php
r206736 r212218 5 5 Description: This plugin adds an RSS icon to the tinymce editor that allows a user to embed an RSS feed into a post or page. 6 6 Author: Deanna Schneider 7 Version: 1.4 7 Version: 1.4.1 8 8 Author URI: http://deannaschneider.wordpress.com/ 9 9 … … 84 84 add_action( 'admin_footer', array(&$this, 'OutputjQueryDialogDiv') ); 85 85 wp_enqueue_script('jquery'); 86 wp_enqueue_script( 'jquery-ui-draggable', plugins_url('/ cets_embed_rss/lib/jquery-ui/ui.draggable.js'), array('jquery-ui-core'), '1.5.2' );87 wp_enqueue_script( 'jquery-ui-resizable', plugins_url('/ cets_embed_rss/lib/jquery-ui/ui.resizable.js'), array('jquery-ui-core'), '1.5.2' );88 wp_enqueue_script( 'jquery-ui-dialog', plugins_url('/ cets_embed_rss/lib/jquery-ui/ui.dialog.js'), array('jquery-ui-core'), '1.5.2' );89 wp_enqueue_style( 'cets-jquery-ui', plugins_url('/ cets_embed_rss/lib/jquery-ui/cets-jquery-ui.css'), array(), $this->version, 'screen' );86 wp_enqueue_script( 'jquery-ui-draggable', plugins_url('/embed_rss/lib/jquery-ui/ui.draggable.js'), array('jquery-ui-core'), '1.5.2' ); 87 wp_enqueue_script( 'jquery-ui-resizable', plugins_url('/embed_rss/lib/jquery-ui/ui.resizable.js'), array('jquery-ui-core'), '1.5.2' ); 88 wp_enqueue_script( 'jquery-ui-dialog', plugins_url('/embed_rss/lib/jquery-ui/ui.dialog.js'), array('jquery-ui-core'), '1.5.2' ); 89 wp_enqueue_style( 'cets-jquery-ui', plugins_url('/embed_rss/lib/jquery-ui/cets-jquery-ui.css'), array(), $this->version, 'screen' ); 90 90 } 91 91 -
embed-rss/trunk/readme.txt
r206736 r212218 29 29 == Changelog == 30 30 31 1.4.1 - fixed naming scheme error 32 31 33 1.4 - changed the structure to get rid of the wp-load. Uses different type of pop up box now. 32 34
Note: See TracChangeset
for help on using the changeset viewer.