Remove trailing comma in common.js that IE is known to choke on. props ocean90, fixes #13260.

git-svn-id: http://svn.automattic.com/wordpress/trunk@14472 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-05-06 14:13:31 +00:00
parent e34150ab5b
commit 625f6d8ad5
3 changed files with 3 additions and 3 deletions

View File

@ -164,7 +164,7 @@ columns = {
return id.substring( id, id.length - 5 );
}).get().join(',');
};
},
}
}
$(document).ready(function(){columns.init();});

File diff suppressed because one or more lines are too long

View File

@ -60,7 +60,7 @@ function wp_default_scripts( &$scripts ) {
$scripts->add( 'utils', "/wp-admin/js/utils$suffix.js", false, '20090102' );
$scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), '20100429' );
$scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), '20100506' );
$scripts->add_data( 'common', 'group', 1 );
$scripts->localize( 'common', 'commonL10n', array(
'warnDelete' => __("You are about to permanently delete the selected items.\n 'Cancel' to stop, 'OK' to delete."),