Skip to content

Commit 8aeaa7d

Browse files
committed
quill 1.2.3
1 parent d739a7a commit 8aeaa7d

File tree

9 files changed

+309
-19
lines changed

9 files changed

+309
-19
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"knockout-validation": "2.0.3",
4848
"quill-editor-knockout-binding": "ko-quill#0.1.3",
4949
"pepjs": "0.4.2",
50-
"quill": "1.2.2",
50+
"quill": "1.2.3",
5151
"respond": "respond-minmax#1.4.2",
5252
"responsive-tabs": "1.6.2",
5353
"router.js": "1.0.8",

quill_1.2.2/Resources.zip

-257 KB
Binary file not shown.

quill_1.2.2/quill.min.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

quill_1.2.3/.eslintrc.js

Lines changed: 296 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,296 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es6": true,
6+
"jasmine": true
7+
},
8+
"extends": "eslint:recommended",
9+
"parserOptions": {
10+
"sourceType": "module"
11+
},
12+
"rules": {
13+
"accessor-pairs": "error",
14+
"array-bracket-spacing": "off",
15+
"array-callback-return": "error",
16+
"arrow-body-style": "off",
17+
"arrow-parens": [
18+
"error",
19+
"always"
20+
],
21+
"arrow-spacing": [
22+
"error",
23+
{
24+
"after": true,
25+
"before": true
26+
}
27+
],
28+
"block-scoped-var": "off",
29+
"block-spacing": "error",
30+
"brace-style": [
31+
"error",
32+
"1tbs"
33+
],
34+
"callback-return": "error",
35+
"camelcase": "error",
36+
"class-methods-use-this": "off",
37+
"comma-dangle": "off",
38+
"comma-spacing": [
39+
"error",
40+
{
41+
"after": true,
42+
"before": false
43+
}
44+
],
45+
"comma-style": [
46+
"error",
47+
"last"
48+
],
49+
"complexity": "error",
50+
"computed-property-spacing": [
51+
"error",
52+
"never"
53+
],
54+
"consistent-return": "off",
55+
"consistent-this": "off",
56+
"curly": "off",
57+
"default-case": "error",
58+
"dot-location": [
59+
"error",
60+
"property"
61+
],
62+
"dot-notation": "off",
63+
"eol-last": "error",
64+
"eqeqeq": "off",
65+
"func-call-spacing": "error",
66+
"func-name-matching": "error",
67+
"func-names": [
68+
"error",
69+
"never"
70+
],
71+
"func-style": [
72+
"error",
73+
"declaration",
74+
{
75+
"allowArrowFunctions": true
76+
}
77+
],
78+
"generator-star-spacing": "error",
79+
"global-require": "off",
80+
"guard-for-in": "error",
81+
"handle-callback-err": "error",
82+
"id-blacklist": "error",
83+
"id-length": "off",
84+
"id-match": "error",
85+
"indent": "off",
86+
"init-declarations": "off",
87+
"jsx-quotes": "error",
88+
"key-spacing": "off",
89+
"keyword-spacing": "off",
90+
"line-comment-position": "off",
91+
"linebreak-style": [
92+
"error",
93+
"unix"
94+
],
95+
"lines-around-comment": "error",
96+
"lines-around-directive": "error",
97+
"max-depth": "error",
98+
"max-len": "off",
99+
"max-lines": "off",
100+
"max-nested-callbacks": "error",
101+
"max-params": "off",
102+
"max-statements": "off",
103+
"max-statements-per-line": "error",
104+
"multiline-ternary": [
105+
"error",
106+
"never"
107+
],
108+
"new-parens": "error",
109+
"newline-after-var": "off",
110+
"newline-before-return": "off",
111+
"newline-per-chained-call": "off",
112+
"no-alert": "off",
113+
"no-array-constructor": "error",
114+
"no-bitwise": "off",
115+
"no-caller": "error",
116+
"no-catch-shadow": "error",
117+
"no-confusing-arrow": "error",
118+
"no-continue": "error",
119+
"no-div-regex": "error",
120+
"no-duplicate-imports": "error",
121+
"no-else-return": "off",
122+
"no-empty": [
123+
"error",
124+
{
125+
"allowEmptyCatch": true
126+
}
127+
],
128+
"no-empty-function": "off",
129+
"no-eq-null": "off",
130+
"no-eval": "error",
131+
"no-extend-native": "off",
132+
"no-extra-bind": "error",
133+
"no-extra-label": "error",
134+
"no-extra-parens": "off",
135+
"no-floating-decimal": "error",
136+
"no-global-assign": "error",
137+
"no-implicit-globals": "error",
138+
"no-implied-eval": "error",
139+
"no-inline-comments": "off",
140+
"no-invalid-this": "off",
141+
"no-iterator": "error",
142+
"no-label-var": "error",
143+
"no-labels": "error",
144+
"no-lone-blocks": "error",
145+
"no-lonely-if": "off",
146+
"no-loop-func": "error",
147+
"no-magic-numbers": "off",
148+
"no-mixed-operators": "off",
149+
"no-mixed-requires": "error",
150+
"no-multi-spaces": "off",
151+
"no-multi-str": "error",
152+
"no-multiple-empty-lines": "error",
153+
"no-negated-condition": "off",
154+
"no-nested-ternary": "error",
155+
"no-new": "error",
156+
"no-new-func": "error",
157+
"no-new-object": "error",
158+
"no-new-require": "error",
159+
"no-new-wrappers": "error",
160+
"no-octal-escape": "error",
161+
"no-param-reassign": "off",
162+
"no-path-concat": "error",
163+
"no-plusplus": [
164+
"error",
165+
{
166+
"allowForLoopAfterthoughts": true
167+
}
168+
],
169+
"no-process-env": "error",
170+
"no-process-exit": "error",
171+
"no-proto": "error",
172+
"no-prototype-builtins": "error",
173+
"no-restricted-globals": "error",
174+
"no-restricted-imports": "error",
175+
"no-restricted-modules": "error",
176+
"no-restricted-properties": "error",
177+
"no-restricted-syntax": "error",
178+
"no-return-assign": [
179+
"error",
180+
"except-parens"
181+
],
182+
"no-script-url": "error",
183+
"no-self-compare": "error",
184+
"no-sequences": "off",
185+
"no-shadow": "off",
186+
"no-shadow-restricted-names": "error",
187+
"no-spaced-func": "error",
188+
"no-sync": "error",
189+
"no-tabs": "error",
190+
"no-template-curly-in-string": "error",
191+
"no-ternary": "off",
192+
"no-throw-literal": "error",
193+
"no-trailing-spaces": "error",
194+
"no-undef-init": "error",
195+
"no-undefined": "off",
196+
"no-underscore-dangle": "off",
197+
"no-unmodified-loop-condition": "error",
198+
"no-unneeded-ternary": "error",
199+
"no-unsafe-negation": "error",
200+
"no-unused-expressions": "off",
201+
"no-use-before-define": "off",
202+
"no-useless-call": "error",
203+
"no-useless-computed-key": "error",
204+
"no-useless-concat": "error",
205+
"no-useless-constructor": "error",
206+
"no-useless-escape": "off",
207+
"no-useless-rename": "error",
208+
"no-var": "off",
209+
"no-void": "error",
210+
"no-warning-comments": "off",
211+
"no-whitespace-before-property": "error",
212+
"no-with": "error",
213+
"object-curly-newline": "off",
214+
"object-curly-spacing": "off",
215+
"object-property-newline": [
216+
"error",
217+
{
218+
"allowMultiplePropertiesPerLine": true
219+
}
220+
],
221+
"object-shorthand": "off",
222+
"one-var": "off",
223+
"one-var-declaration-per-line": "off",
224+
"operator-assignment": [
225+
"error",
226+
"always"
227+
],
228+
"operator-linebreak": "error",
229+
"padded-blocks": "off",
230+
"prefer-arrow-callback": "off",
231+
"prefer-const": "off",
232+
"prefer-numeric-literals": "error",
233+
"prefer-reflect": "off",
234+
"prefer-rest-params": "off",
235+
"prefer-spread": "off",
236+
"prefer-template": "off",
237+
"quote-props": "off",
238+
"quotes": "off",
239+
"radix": [
240+
"error",
241+
"as-needed"
242+
],
243+
"require-jsdoc": "off",
244+
"rest-spread-spacing": [
245+
"error",
246+
"never"
247+
],
248+
"semi": "off",
249+
"semi-spacing": [
250+
"error",
251+
{
252+
"after": true,
253+
"before": false
254+
}
255+
],
256+
"sort-imports": "off",
257+
"sort-keys": "off",
258+
"sort-vars": "off",
259+
"space-before-blocks": "off",
260+
"space-before-function-paren": "off",
261+
"space-in-parens": [
262+
"error",
263+
"never"
264+
],
265+
"space-infix-ops": "off",
266+
"space-unary-ops": [
267+
"error",
268+
{
269+
"nonwords": false,
270+
"words": false
271+
}
272+
],
273+
"spaced-comment": [
274+
"error",
275+
"always"
276+
],
277+
"strict": "error",
278+
"symbol-description": "error",
279+
"template-curly-spacing": [
280+
"error",
281+
"never"
282+
],
283+
"unicode-bom": [
284+
"error",
285+
"never"
286+
],
287+
"valid-jsdoc": "error",
288+
"vars-on-top": "off",
289+
"wrap-regex": "off",
290+
"yield-star-spacing": "error",
291+
"yoda": [
292+
"error",
293+
"never"
294+
]
295+
}
296+
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<p>Quill Rich Text Editor is licensed under the <a href="https://github.com/quilljs/quill/blob/v1.2.2/LICENSE">BSD 3-clause License</a>.</p>
1+
<p>Quill Rich Text Editor is licensed under the <a href="https://github.com/quilljs/quill/blob/v1.2.3/LICENSE">BSD 3-clause License</a>.</p>

quill_1.2.3/Resources.zip

259 KB
Binary file not shown.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<dotnetnuke type="Package" version="5.0">
22
<packages>
3-
<package name="quill" type="JavaScript_Library" version="1.2.2">
3+
<package name="quill" type="JavaScript_Library" version="1.2.3">
44
<friendlyName>Quill Rich Text Editor</friendlyName>
55
<description><![CDATA[
66
<p>Quill is a modern rich text editor built for compatibility and extensibility. It was created by <a href="https://twitter.com/jhchen">Jason Chen</a> and <a href="https://twitter.com/byronmilligan">Byron Milligan</a> and open sourced by <a href="http://www.salesforce.com">Salesforce.com</a>.</p>
@@ -21,7 +21,7 @@
2121
<libraryName>quill</libraryName>
2222
<fileName>quill.min.js</fileName>
2323
<preferredScriptLocation>BodyBottom</preferredScriptLocation>
24-
<CDNPath>https://cdn.quilljs.com/1.2.2/quill.min.js</CDNPath>
24+
<CDNPath>https://cdn.quilljs.com/1.2.3/quill.min.js</CDNPath>
2525
<objectName>Quill</objectName>
2626
</javaScriptLibrary>
2727
</component>
@@ -35,7 +35,7 @@
3535
</component>
3636
<component type="ResourceFile">
3737
<resourceFiles>
38-
<basePath>Resources\Libraries\quill\01_02_02</basePath>
38+
<basePath>Resources\Libraries\quill\01_02_03</basePath>
3939
<resourceFile>
4040
<name>Resources.zip</name>
4141
</resourceFile>

quill_1.2.3/quill.min.js

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)