aboutsummaryrefslogtreecommitdiff
path: root/js/document
diff options
context:
space:
mode:
Diffstat (limited to 'js/document')
-rwxr-xr-xjs/document/html-document.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/js/document/html-document.js b/js/document/html-document.js
index 6324d5ed..2531465d 100755
--- a/js/document/html-document.js
+++ b/js/document/html-document.js
@@ -300,7 +300,6 @@ exports.HTMLDocument = Montage.create(TextDocument, {
300 { 300 {
301 shapeModel.GLGeomObj = root; 301 shapeModel.GLGeomObj = root;
302 shapeModel.strokeSize = root._strokeWidth; 302 shapeModel.strokeSize = root._strokeWidth;
303 shapeModel.stroke = root._strokeColor;
304 shapeModel.strokeStyle = "solid"; 303 shapeModel.strokeStyle = "solid";
305 //shapeModel.strokeStyleIndex 304 //shapeModel.strokeStyleIndex
306 switch (root.geomType()) 305 switch (root.geomType())
@@ -308,7 +307,6 @@ exports.HTMLDocument = Montage.create(TextDocument, {
308 case root.GEOM_TYPE_RECTANGLE: 307 case root.GEOM_TYPE_RECTANGLE:
309 elementModel.selection = "Rectangle"; 308 elementModel.selection = "Rectangle";
310 elementModel.pi = "RectanglePi"; 309 elementModel.pi = "RectanglePi";
311 shapeModel.fill = root._fillColor;
312 shapeModel.tlRadius = root._tlRadius; 310 shapeModel.tlRadius = root._tlRadius;
313 shapeModel.trRadius = root._trRadius; 311 shapeModel.trRadius = root._trRadius;
314 shapeModel.blRadius = root._blRadius; 312 shapeModel.blRadius = root._blRadius;
@@ -318,7 +316,6 @@ exports.HTMLDocument = Montage.create(TextDocument, {
318 case root.GEOM_TYPE_CIRCLE: 316 case root.GEOM_TYPE_CIRCLE:
319 elementModel.selection = "Oval"; 317 elementModel.selection = "Oval";
320 elementModel.pi = "OvalPi"; 318 elementModel.pi = "OvalPi";
321 shapeModel.fill = root._fillColor;
322 shapeModel.innerRadius = root._innerRadius; 319 shapeModel.innerRadius = root._innerRadius;
323 break; 320 break;
324 321