Skip to content
Snippets Groups Projects
Commit 4e9c3f5e authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unused code removed

parent 3ecd7e34
No related branches found
No related tags found
1 merge request!994Resolve "Remember user parameters for sorting table in Admin Panel"
...@@ -29,7 +29,6 @@ var Promise = require("bluebird"); ...@@ -29,7 +29,6 @@ var Promise = require("bluebird");
function AbstractAdminPanel(params) { function AbstractAdminPanel(params) {
params["scrollable"] = true; params["scrollable"] = true;
Panel.call(this, params); Panel.call(this, params);
this._createHeader(params.name);
this._initPromises = []; this._initPromises = [];
this._eventBinds = []; this._eventBinds = [];
...@@ -38,13 +37,6 @@ function AbstractAdminPanel(params) { ...@@ -38,13 +37,6 @@ function AbstractAdminPanel(params) {
AbstractAdminPanel.prototype = Object.create(Panel.prototype); AbstractAdminPanel.prototype = Object.create(Panel.prototype);
AbstractAdminPanel.prototype.constructor = AbstractAdminPanel; AbstractAdminPanel.prototype.constructor = AbstractAdminPanel;
AbstractAdminPanel.prototype._createHeader = function (name) {
// this.getElement().appendChild(Functions.createElement({
// type: "h1",
// content: name
// }));
};
/** /**
* *
* @returns {Promise} * @returns {Promise}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment