Use display property defined in CSS for elements of class item
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Thu, 8 Aug 2013 07:36:30 +0000 (09:36 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Thu, 8 Aug 2013 07:36:30 +0000 (09:36 +0200)
This preserves item bullets

modules/documentCanvas/canvas/wlxmlManagers.js

index 8973a6c..b28b022 100644 (file)
@@ -19,8 +19,8 @@ var DocumentElementWrapper = function(documentElement) {
     }
 
     this.setDisplayStyle = function(displayStyle) {
-        documentElement.dom().css('display', displayStyle);
-        documentElement._container().css('display', displayStyle);
+        documentElement.dom().css('display', displayStyle || '');
+        documentElement._container().css('display', displayStyle || '');
     };
 
     this.tag = function() {
@@ -48,6 +48,8 @@ var getDisplayStyle = function(tag, klass) {
         return 'none';
     if(tag === 'span')
         return 'inline';
+    if(klass === 'item')
+        return null;
     return 'block';
 }