Changeset 213209
- Timestamp:
- 03/04/2010 10:16:34 PM (16 years ago)
- Location:
- extensible-widgets/trunk
- Files:
-
- 5 edited
-
includes/wpew.php (modified) (1 diff)
-
includes/xf/wp/AAdminMenu.php (modified) (1 diff)
-
js/admin.js (modified) (1 diff)
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
extensible-widgets/trunk/includes/wpew.php
r210736 r213209 43 43 * @see xf_wp_APlugin::$version 44 44 */ 45 public $version = '0.9.2. 1';45 public $version = '0.9.2.2'; 46 46 47 47 /** -
extensible-widgets/trunk/includes/xf/wp/AAdminMenu.php
r210736 r213209 98 98 reset($this->_children); 99 99 if( !$this->hasDefaultChild ) { 100 $this->defaultChild = current($this->_children); 100 $first =& current($this->_children); 101 $this->defaultChild = $first; 101 102 } 102 103 do { -
extensible-widgets/trunk/js/admin.js
r209246 r213209 42 42 $(this.update).hide().animate({opacity:'show'},'normal').wpewAdmin(); 43 43 }, 44 dataType: 'html' ,44 dataType: 'html' 45 45 }; 46 46 $(this).find('form.ajaxify, a.ajaxify').ajaxify(ajaxOpts); -
extensible-widgets/trunk/plugin.php
r210736 r213209 5 5 Description: In addition to adding numerous extremely useful widgets for developers and users alike, this plugin is a system written on a PHP 5 object oriented structure. In short, it is built for modification and extension. It wraps the WordPress Widget API to allow for an alternative, and in my opinion more robust method to hook into and use it. Widgets are WordPress's version of user interface modules. They already support an administrative and client-side view. This system simply leverages that with a higher potential in mind. 6 6 Author: Jim Isaacs 7 Version: 0.9.2. 17 Version: 0.9.2.2 8 8 Author URI: http://jidd.jimisaacs.com/ 9 9 */ -
extensible-widgets/trunk/readme.txt
r210736 r213209 68 68 69 69 == Changelog == 70 71 = 0.9.2.2 = 72 * Fixed a reference warning with admin controllers 73 * Fixed minor Javascript error failing in older browsers 70 74 71 75 = 0.9.2.1 =
Note: See TracChangeset
for help on using the changeset viewer.