2011-07-29 18:37:11 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
2011-11-05 17:04:10 +00:00
|
|
|
'use strict';
|
2013-07-15 11:39:23 +00:00
|
|
|
pandora.ui.sectionbar = function(mode, isDragAndDrop) {
|
2011-06-19 17:49:25 +00:00
|
|
|
var that = Ox.Bar({
|
2011-05-25 19:42:45 +00:00
|
|
|
size: 24
|
|
|
|
})
|
|
|
|
.append(
|
2011-12-22 07:24:30 +00:00
|
|
|
mode == 'buttons'
|
2013-07-15 11:39:23 +00:00
|
|
|
? pandora.$ui.sectionButtons = pandora.ui.sectionButtons(isDragAndDrop)
|
|
|
|
: pandora.$ui.sectionSelect = pandora.ui.sectionSelect(isDragAndDrop)
|
2013-07-08 11:30:33 +00:00
|
|
|
)
|
|
|
|
.bindEvent({
|
|
|
|
doubleclick: function(e) {
|
|
|
|
if ($(e.target).is('.OxBar')) {
|
|
|
|
pandora.$ui.folders.animate({scrollTop: 0}, 250);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2011-05-25 19:42:45 +00:00
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|