Open Media Library

This commit is contained in:
j 2014-05-04 19:26:43 +02:00
commit 2ee2bc178a
228 changed files with 85988 additions and 0 deletions

View file

@ -0,0 +1,25 @@
'use strict';
oml.ui.itemOuterPanel = function() {
var ui = oml.user.ui,
that = Ox.SplitPanel({
elements: [
{
element: oml.$ui.itemToolbar = oml.ui.itemToolbar(),
size: 24
},
{
element: oml.$ui.itemInnerPanel = oml.ui.itemInnerPanel()
}
],
orientation: 'vertical'
})
.bindEvent({
// ...
});
return that;
};