Commit 81d2108f authored by GoshaZotov's avatar GoshaZotov

changes for paste mso-list

parent 623d7f56
...@@ -5416,7 +5416,13 @@ PasteProcessor.prototype = ...@@ -5416,7 +5416,13 @@ PasteProcessor.prototype =
{ {
res = numbering_numfmt_Decimal; res = numbering_numfmt_Decimal;
} }
else if(str.match(/^[I,X,V]/)) else if(1 === str.length && -1 !== str.indexOf("o"))
{
res = numbering_numfmt_Bullet;
}
else
{
if(str.match(/^[I,X,V]/))
{ {
res = numbering_numfmt_UpperRoman; res = numbering_numfmt_UpperRoman;
} }
...@@ -5432,6 +5438,7 @@ PasteProcessor.prototype = ...@@ -5432,6 +5438,7 @@ PasteProcessor.prototype =
{ {
res = numbering_numfmt_LowerLetter; res = numbering_numfmt_LowerLetter;
} }
}
return res; return res;
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment