Minor modifications.

This commit is contained in:
kovacsv 2018-12-25 11:40:51 +01:00
parent a0b86b1790
commit 4b3061faf7
2 changed files with 3 additions and 3 deletions

View File

@ -186,7 +186,7 @@ div.meshbuttons
div.meshbuttons img.meshimgbutton
{
background : #dddddd;
background : #dadada;
padding : 3px;
border : 1px solid #aaaaaa;
border-radius : 3px;

View File

@ -244,7 +244,7 @@ ImporterApp.prototype.GenerateMenu = function ()
document.body.appendChild (input);
input.select ();
document.execCommand ('copy');
document.body.removeChild(input)
document.body.removeChild(input);
}
var meshButtons = $('<div>').addClass ('meshbuttons').appendTo (contentDiv);
@ -258,7 +258,7 @@ ImporterApp.prototype.GenerateMenu = function ()
});
}
var meshItem = meshesGroup.AddSubItem (mesh.name, {
meshesGroup.AddSubItem (mesh.name, {
openCloseButton : {
title : 'Show/Hide Details',
onOpen : function (contentDiv, mesh) {