mirror of
https://github.com/Dahlgren/arma-server-web-admin.git
synced 2024-08-30 17:22:10 +00:00
14 lines
285 B
JavaScript
14 lines
285 B
JavaScript
var _ = require('underscore')
|
|
var Marionette = require('marionette')
|
|
|
|
var tpl = require('tpl/servers/empty.html')
|
|
|
|
module.exports = Marionette.ItemView.extend({
|
|
tagName: 'tr',
|
|
template: _.template(tpl),
|
|
|
|
initialize: function (options) {
|
|
this.servers = options.servers
|
|
}
|
|
})
|