Skip to content
Permalink
Browse files
Cleanup spacing in queue.js. Fixes #10601
  • Loading branch information
rwaldron committed Oct 27, 2011
1 parent d00e29a commit 7987545
Showing 1 changed file with 2 additions and 2 deletions.
@@ -24,7 +24,7 @@ jQuery.extend({

_mark: function( elem, type ) {
if ( elem ) {
type = (type || "fx") + "mark";
type = ( type || "fx" ) + "mark";
jQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 );
}
},
@@ -51,7 +51,7 @@ jQuery.extend({
queue: function( elem, type, data ) {
var q;
if ( elem ) {
type = (type || "fx") + "queue";
type = ( type || "fx" ) + "queue";
q = jQuery._data( elem, type );

// Speed up dequeue by getting out quickly if this is just a lookup

0 comments on commit 7987545

Please sign in to comment.