1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 16:36:47 +02:00

update prettier to v2 & format files

This commit is contained in:
David Sevilla Martin
2020-03-28 11:59:00 -04:00
parent 458045ad33
commit be844519f2
52 changed files with 2500 additions and 1485 deletions

6
js/dist/admin.js vendored
View File

@@ -993,7 +993,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/*** IMPORTS FROM imports-loader ***/
},
scrollTop: function scrollTop(value) {
if (!this.length) return;
var hasScrollTop = 'scrollTop' in this[0];
var hasScrollTop = ('scrollTop' in this[0]);
if (value === undefined) return hasScrollTop ? this[0].scrollTop : this[0].pageYOffset;
return this.each(hasScrollTop ? function () {
this.scrollTop = value;
@@ -1003,7 +1003,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/*** IMPORTS FROM imports-loader ***/
},
scrollLeft: function scrollLeft(value) {
if (!this.length) return;
var hasScrollLeft = 'scrollLeft' in this[0];
var hasScrollLeft = ('scrollLeft' in this[0]);
if (value === undefined) return hasScrollLeft ? this[0].scrollLeft : this[0].pageXOffset;
return this.each(hasScrollLeft ? function () {
this.scrollLeft = value;
@@ -1147,7 +1147,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/*** IMPORTS FROM imports-loader ***/
},
handlers = {},
specialEvents = {},
focusinSupported = 'onfocusin' in window,
focusinSupported = ('onfocusin' in window),
focus = {
focus: 'focusin',
blur: 'focusout'

File diff suppressed because one or more lines are too long

2811
js/dist/forum.js vendored

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long