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

unused test method creating dialog div removed

parent 5ac8b056
No related branches found
Tags v12.0.0-alpha.0
1 merge request!5Frontend refactor
......@@ -34,13 +34,6 @@ Helper.prototype.createMenuDiv = function() {
return result;
};
Helper.prototype.createDialogsDiv = function() {
var result = document.createElement("div");
result.setAttribute("name", "dialogs");
result.appendChild(this.createOverviewDialogDiv());
return result;
};
Helper.prototype.createOverviewDialogDiv = function() {
var result = document.createElement("div");
result.setAttribute("name", "overviewDialog");
......
......@@ -26,9 +26,6 @@ describe('minerva global', function() {
global.menuDiv = helper.createMenuDiv();
document.body.appendChild(global.menuDiv);
global.dialogsDiv = helper.createDialogsDiv();
document.body.appendChild(global.dialogsDiv);
global.scriptDiv = document.createElement("script");
document.body.appendChild(global.scriptDiv);
......@@ -55,7 +52,6 @@ describe('minerva global', function() {
document.body.removeChild(global.legendDiv);
document.body.removeChild(global.leftPanelTab);
document.body.removeChild(global.menuDiv);
document.body.removeChild(global.dialogsDiv);
document.body.removeChild(global.scriptDiv);
});
......
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