allow list text entry up to 16 items

pull/2466/head
John McLear 2015-01-18 15:32:48 +00:00
parent 3c692faa8c
commit 83fae22279
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
* limitations under the License. * limitations under the License.
*/ */
var _MAX_LIST_LEVEL = 8; var _MAX_LIST_LEVEL = 16;
var UNorm = require('unorm'); var UNorm = require('unorm');
var Changeset = require('./Changeset'); var Changeset = require('./Changeset');
@ -523,7 +523,7 @@ function makeContentCollector(collectStyles, browser, apool, domInterface, class
}else{ }else{
var type = null; var type = null;
} }
var rr = cls && /(?:^| )list-([a-z]+[12345678])\b/.exec(cls); var rr = cls && /(?:^| )list-([a-z]+[0-9]+)\b/.exec(cls);
// lists do not need to have a type, so before we make a wrong guess, check if we find a better hint within the node's children // lists do not need to have a type, so before we make a wrong guess, check if we find a better hint within the node's children
if(!rr && !type){ if(!rr && !type){
for (var i in node.children){ for (var i in node.children){