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

19
static/js/itemToolbar.js Normal file
View file

@ -0,0 +1,19 @@
'use strict';
oml.ui.itemToolbar = function() {
var ui = oml.user.ui,
that = Ox.Bar({size: 24})
.css({zIndex: 2})
.append(
oml.$ui.backButton = oml.ui.backButton()
).append(
oml.$ui.fullscreenButton = oml.ui.fullscreenButton()
).append(
oml.$ui.itemViewButtons = oml.ui.itemViewButtons()
);
return that;
};