Multiple bugfixes

This commit is contained in:
pyoor 2017-07-06 10:18:04 -04:00
parent 3a44c6065b
commit 9cc22a99de
2 changed files with 12 additions and 12 deletions

View File

@ -6,32 +6,32 @@ make.command = {
_data: { _data: {
'backcolor': function () { return make.colors.any() }, 'backcolor': function () { return make.colors.any() },
'bold': null, 'bold': null,
'contentReadOnly': function () { random.bool() }, 'contentReadOnly': function () { return random.bool() },
'copy': null, 'copy': null,
'createlink': function () { make.uri.any() }, 'createlink': function () { return make.uri.any() },
'cut': null, 'cut': null,
'decreasefontsize': null, 'decreasefontsize': null,
'delete': null, 'delete': null,
'enableInlineTableEditing': function () { random.bool() }, 'enableInlineTableEditing': function () { return random.bool() },
'enableObjectResizing': function () { random.bool() }, 'enableObjectResizing': function () { return random.bool() },
'fontname': function () { make.font.family() }, 'fontname': function () { return make.font.family() },
'fontsize': function () { make.font.relativeSize() }, 'fontsize': function () { return make.font.relativeSize() },
'formatblock': ['p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ol', 'ul', 'pre', 'address', 'blockquote', 'dl', 'div'], 'formatblock': ['p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ol', 'ul', 'pre', 'address', 'blockquote', 'dl', 'div'],
'forwarddelete': null, 'forwarddelete': null,
'forecolor': function () { make.colors.any() }, 'forecolor': function () { return make.colors.any() },
'gethtml': null, 'gethtml': null,
'heading': null, 'heading': null,
'hilitecolor': function () { make.colors.any() }, 'hilitecolor': function () { return make.colors.any() },
'increasefontsize': null, 'increasefontsize': null,
'indent': null, 'indent': null,
'insertBrOnReturn': function () { random.bool() }, 'insertBrOnReturn': function () { return random.bool() },
'inserthorizontalrule': null, 'inserthorizontalrule': null,
// 'inserthtml': function () { }, // 'inserthtml': function () { },
'insertlinebreak': null, 'insertlinebreak': null,
'insertimage': function () { make.uri.any() }, 'insertimage': function () { return make.uri.any() },
'insertorderedlist': null, 'insertorderedlist': null,
'insertparagraph': null, 'insertparagraph': null,
'inserttext': function () { make.text.any() }, 'inserttext': function () { return make.text.any() },
'insertunorderedlist': null, 'insertunorderedlist': null,
'italic': null, 'italic': null,
'justifycenter': null, 'justifycenter': null,
@ -44,7 +44,7 @@ make.command = {
'removeformat': null, 'removeformat': null,
'selectall': null, 'selectall': null,
'strikethrough': null, 'strikethrough': null,
'styleWithCSS': function () { random.bool() }, 'styleWithCSS': function () { return random.bool() },
'subscript': null, 'subscript': null,
'superscript': null, 'superscript': null,
'underline': null, 'underline': null,

0
lib/make/time.js Normal file
View File