openmedialibrary/static/js/peersButton.js

40 lines
736 B
JavaScript
Raw Normal View History

2014-05-04 17:26:43 +00:00
'use strict';
2016-01-13 07:04:35 +00:00
oml.ui.peersButton = function() {
2014-05-04 17:26:43 +00:00
var that = Ox.Element({
2016-01-13 04:49:49 +00:00
tooltip: Ox._('No peering requests')
2014-05-04 17:26:43 +00:00
})
.css({
2016-01-13 04:49:49 +00:00
marginRight: '6px'
2014-05-04 17:26:43 +00:00
})
.bindEvent({
2016-01-07 05:09:10 +00:00
click: function() {
// ...
}
2014-05-04 17:26:43 +00:00
});
Ox.Button({
style: 'symbol',
2016-01-13 04:49:49 +00:00
title: 'user',
2014-05-04 17:26:43 +00:00
type: 'image'
})
.css({
float: 'left',
borderRadius: 0
})
.appendTo(that);
Ox.Element()
.addClass('OxLight')
.css({
float: 'left',
marginTop: '2px',
fontSize: '9px'
})
.html('0')
.appendTo(that);
return that;
};