Ticket #21633: 21633.diff
File 21633.diff, 1.3 KB (added by , 8 years ago) |
---|
-
wp-admin/includes/template.php
1760 1760 * 1761 1761 * @param string $pointer_id The pointer ID. 1762 1762 * @param string $selector The HTML elements, on which the pointer should be attached. 1763 * @param array $args Arguments to be passed to the pointer JS (see wp-pointer. dev.js).1763 * @param array $args Arguments to be passed to the pointer JS (see wp-pointer.js). 1764 1764 */ 1765 1765 private static function print_js( $pointer_id, $selector, $args ) { 1766 1766 if ( empty( $pointer_id ) || empty( $selector ) || empty( $args ) || empty( $args['content'] ) ) -
wp-admin/js/post.js
281 281 if ( taxonomy == 'category' ) 282 282 settingName = 'cats'; 283 283 284 // TODO: move to jQuery 1.3+, support for multiple hierarchical taxonomies, see wp-lists. dev.js284 // TODO: move to jQuery 1.3+, support for multiple hierarchical taxonomies, see wp-lists.js 285 285 $('a', '#' + taxonomy + '-tabs').click( function(){ 286 286 var t = $(this).attr('href'); 287 287 $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');