Your IP : 18.116.88.16
(function(){"use strict";BX.namespace("BX.Kanban");BX.Kanban.DropZone=function(n){n=n||{};if(!BX.Kanban.Utils.isValidId(n.id)){throw new Error("BX.Kanban.DropZone: 'id' parameter is not valid.")}this.id=n.id;this.name=BX.type.isNotEmptyString(n.name)?n.name:null;this.color=n.color;this.grid=null;this.layout={container:null}};BX.Kanban.DropZone.prototype={getId:function(){return this.id},setGrid:function(n){this.grid=n},getGrid:function(){return this.grid},render:function(){var n=BX.create("div",{attrs:{className:"main-kanban-dropzone","data-id":this.getId()},children:[BX.create("div",{attrs:{className:"main-kanban-dropzone-title"},html:this.name}),BX.create("div",{attrs:{className:"main-kanban-dropzone-bg",style:"background: #"+this.color}})]});return n}}})();
//# sourceMappingURL=dropzone.map.js