mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
+ Removed search box
+ It's no longer possible to accidentally launch into a tab by dragging the mouse and ending up on a tab. Same for close boxes + It's no longer possible to add a tab to a group twice (by dragging it around inside the group) + When a tab inside a group is closed, it's removed from the group. If it's the last in the group, the group goes away + Refactored mirror code to make mirror objects first-class citizens + Added a utility routine for determining if an object is a jQuery object (couldn't find one in jQuery itself)
This commit is contained in:
parent
12dc7941e2
commit
09c99ac058
@ -195,7 +195,13 @@ var Utils = {
|
||||
getMilliseconds: function() {
|
||||
var date = new Date();
|
||||
return date.getTime();
|
||||
}
|
||||
},
|
||||
|
||||
// ___ Misc
|
||||
isJQuery: function(object) {
|
||||
// TODO: need more robust way
|
||||
return (object && typeof(object.fadeIn) == 'function' ? true : false);
|
||||
}
|
||||
};
|
||||
|
||||
window.Utils = Utils;
|
||||
|
Loading…
Reference in New Issue
Block a user