gecko-dev/browser/base/content/tabcandy/app/items.js

21 lines
363 B
JavaScript
Raw Normal View History

// ##########
window.Items = {
// ----------
getTopLevelItems: function() {
var items = [];
$('.tab').each(function() {
$this = $(this);
if(!$this.data('group'))
items.push($this.data('tabItem'));
});
$('.group').each(function() {
items.push($(this).data('group'));
});
return items;
}
};