cablegates/static/js/pandora/ui/sectionbar.js
2011-06-06 17:48:11 +02:00

16 lines
400 B
JavaScript

// vim: et:ts=4:sw=4:sts=4:ft=js
pandora.ui.sectionbar = function(mode) {
var that = new Ox.Bar({
size: 24
})
.append(
mode == 'buttons' ?
pandora.$ui.sectionButtons = pandora.ui.sectionButtons() :
pandora.$ui.sectionSelect = pandora.ui.sectionSelect()
);
that.toggle = function() {
};
return that;
};