2014-05-04 19:26:43 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// FIXME: UNUSED
|
|
|
|
|
|
|
|
oml.ui.folderPlaceholder = function(text) {
|
|
|
|
|
|
|
|
var that = Ox.Element()
|
|
|
|
.addClass('OxLight')
|
|
|
|
.css({
|
|
|
|
height: '14px',
|
|
|
|
padding: '1px 4px',
|
|
|
|
});
|
|
|
|
|
2014-05-17 13:45:57 +02:00
|
|
|
that.updateElement = function(text) {
|
2014-05-04 19:26:43 +02:00
|
|
|
return that.html(text);
|
|
|
|
};
|
|
|
|
|
2014-05-17 13:45:57 +02:00
|
|
|
return that.updateElement(text);
|
2014-05-04 19:26:43 +02:00
|
|
|
|
|
|
|
};
|