webgme
Version:
Web-based Generic Modeling Environment
23 lines (16 loc) • 505 B
JavaScript
/*globals define, _, $ */
/*jshint browser: true*/
/**
* @author rkereskenyi / https://github.com/rkereskenyi
* @author nabana / https://github.com/nabana
*/
define(['./ToolbarItemBase'], function (ToolbarItemBase) {
'use strict';
var ToolbarSeparator,
EL_BASE = $('<div class="separator"></div>');
ToolbarSeparator = function () {
this.el = EL_BASE.clone();
};
_.extend(ToolbarSeparator.prototype, ToolbarItemBase.prototype);
return ToolbarSeparator;
});