2014-05-04 17:26:43 +00: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 11:45:57 +00:00
|
|
|
that.updateElement = function(text) {
|
2014-05-04 17:26:43 +00:00
|
|
|
return that.html(text);
|
|
|
|
};
|
|
|
|
|
2014-05-17 11:45:57 +00:00
|
|
|
return that.updateElement(text);
|
2014-05-04 17:26:43 +00:00
|
|
|
|
|
|
|
};
|