Skip to content

Commit ab046be

Browse files
committed
fix(pm): Rebuilt dist/ files, so they contain bugfix for Pale moon
1 parent 16d7d6b commit ab046be

File tree

19 files changed

+3878
-2970
lines changed

19 files changed

+3878
-2970
lines changed

dist/vue.common.dev.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,7 @@ var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');
535535
var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
536536
var isPhantomJS = UA && /phantomjs/.test(UA);
537537
var isFF = UA && UA.match(/firefox\/(\d+)/);
538+
var isPaleMoon = UA && UA.match(/palemoon\/(\d+)/);
538539

539540
// Firefox has a "watch" function on Object.prototype...
540541
var nativeWatch = ({}).watch;
@@ -7500,7 +7501,7 @@ function createOnceHandler$1 (event, handler, capture) {
75007501
// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp
75017502
// implementation and does not fire microtasks in between event propagation, so
75027503
// safe to exclude.
7503-
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);
7504+
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53) && !isPaleMoon;
75047505

75057506
function add$1 (
75067507
name,

dist/vue.common.prod.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue.esm.browser.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,7 @@ const isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios'
533533
const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
534534
const isPhantomJS = UA && /phantomjs/.test(UA);
535535
const isFF = UA && UA.match(/firefox\/(\d+)/);
536+
const isPaleMoon = UA && UA.match(/palemoon\/(\d+)/);
536537

537538
// Firefox has a "watch" function on Object.prototype...
538539
const nativeWatch = ({}).watch;
@@ -7523,7 +7524,7 @@ function createOnceHandler$1 (event, handler, capture) {
75237524
// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp
75247525
// implementation and does not fire microtasks in between event propagation, so
75257526
// safe to exclude.
7526-
const useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);
7527+
const useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53) && !isPaleMoon;
75277528

75287529
function add$1 (
75297530
name,

dist/vue.esm.browser.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue.esm.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,7 @@ var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');
533533
var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
534534
var isPhantomJS = UA && /phantomjs/.test(UA);
535535
var isFF = UA && UA.match(/firefox\/(\d+)/);
536+
var isPaleMoon = UA && UA.match(/palemoon\/(\d+)/);
536537

537538
// Firefox has a "watch" function on Object.prototype...
538539
var nativeWatch = ({}).watch;
@@ -7522,7 +7523,7 @@ function createOnceHandler$1 (event, handler, capture) {
75227523
// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp
75237524
// implementation and does not fire microtasks in between event propagation, so
75247525
// safe to exclude.
7525-
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);
7526+
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53) && !isPaleMoon;
75267527

75277528
function add$1 (
75287529
name,

dist/vue.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,7 @@
539539
var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
540540
var isPhantomJS = UA && /phantomjs/.test(UA);
541541
var isFF = UA && UA.match(/firefox\/(\d+)/);
542+
var isPaleMoon = UA && UA.match(/palemoon\/(\d+)/);
542543

543544
// Firefox has a "watch" function on Object.prototype...
544545
var nativeWatch = ({}).watch;
@@ -7504,7 +7505,7 @@
75047505
// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp
75057506
// implementation and does not fire microtasks in between event propagation, so
75067507
// safe to exclude.
7507-
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);
7508+
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53) && !isPaleMoon;
75087509

75097510
function add$1 (
75107511
name,

dist/vue.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue.runtime.common.dev.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,7 @@ var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');
526526
var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
527527
var isPhantomJS = UA && /phantomjs/.test(UA);
528528
var isFF = UA && UA.match(/firefox\/(\d+)/);
529+
var isPaleMoon = UA && UA.match(/palemoon\/(\d+)/);
529530

530531
// Firefox has a "watch" function on Object.prototype...
531532
var nativeWatch = ({}).watch;
@@ -6852,7 +6853,7 @@ function createOnceHandler$1 (event, handler, capture) {
68526853
// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp
68536854
// implementation and does not fire microtasks in between event propagation, so
68546855
// safe to exclude.
6855-
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);
6856+
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53) && !isPaleMoon;
68566857

68576858
function add$1 (
68586859
name,

dist/vue.runtime.common.prod.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue.runtime.esm.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');
524524
var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
525525
var isPhantomJS = UA && /phantomjs/.test(UA);
526526
var isFF = UA && UA.match(/firefox\/(\d+)/);
527+
var isPaleMoon = UA && UA.match(/palemoon\/(\d+)/);
527528

528529
// Firefox has a "watch" function on Object.prototype...
529530
var nativeWatch = ({}).watch;
@@ -6874,7 +6875,7 @@ function createOnceHandler$1 (event, handler, capture) {
68746875
// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp
68756876
// implementation and does not fire microtasks in between event propagation, so
68766877
// safe to exclude.
6877-
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);
6878+
var useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53) && !isPaleMoon;
68786879

68796880
function add$1 (
68806881
name,

0 commit comments

Comments
 (0)