Skip to content

Commit 2538584

Browse files
committed
lint fix
1 parent 6fda746 commit 2538584

13 files changed

+13
-13
lines changed

dist/mixpanel-core.cjs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5066,7 +5066,7 @@ MixpanelPeople.prototype.union = addOptOutCheckMixpanelPeople(function(list_name
50665066
* @param {Function} [callback] If provided, the callback will be called when the server responds
50675067
* @deprecated
50685068
*/
5069-
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function(amount, properties, callback) {
5069+
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function() {
50705070
console.error('mixpanel.people.track_charge() is deprecated and no longer has any effect.');
50715071
});
50725072

dist/mixpanel-with-async-recorder.cjs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5066,7 +5066,7 @@ MixpanelPeople.prototype.union = addOptOutCheckMixpanelPeople(function(list_name
50665066
* @param {Function} [callback] If provided, the callback will be called when the server responds
50675067
* @deprecated
50685068
*/
5069-
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function(amount, properties, callback) {
5069+
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function() {
50705070
console.error('mixpanel.people.track_charge() is deprecated and no longer has any effect.');
50715071
});
50725072

dist/mixpanel-with-recorder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19422,7 +19422,7 @@
1942219422
* @param {Function} [callback] If provided, the callback will be called when the server responds
1942319423
* @deprecated
1942419424
*/
19425-
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function(amount, properties, callback) {
19425+
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function() {
1942619426
console$1.error('mixpanel.people.track_charge() is deprecated and no longer has any effect.');
1942719427
});
1942819428

dist/mixpanel-with-recorder.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/mixpanel.amd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19421,7 +19421,7 @@ define((function () { 'use strict';
1942119421
* @param {Function} [callback] If provided, the callback will be called when the server responds
1942219422
* @deprecated
1942319423
*/
19424-
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function(amount, properties, callback) {
19424+
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function() {
1942519425
console$1.error('mixpanel.people.track_charge() is deprecated and no longer has any effect.');
1942619426
});
1942719427

dist/mixpanel.cjs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19421,7 +19421,7 @@ MixpanelPeople.prototype.union = addOptOutCheckMixpanelPeople(function(list_name
1942119421
* @param {Function} [callback] If provided, the callback will be called when the server responds
1942219422
* @deprecated
1942319423
*/
19424-
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function(amount, properties, callback) {
19424+
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function() {
1942519425
console$1.error('mixpanel.people.track_charge() is deprecated and no longer has any effect.');
1942619426
});
1942719427

dist/mixpanel.globals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5067,7 +5067,7 @@
50675067
* @param {Function} [callback] If provided, the callback will be called when the server responds
50685068
* @deprecated
50695069
*/
5070-
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function(amount, properties, callback) {
5070+
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function() {
50715071
console.error('mixpanel.people.track_charge() is deprecated and no longer has any effect.');
50725072
});
50735073

dist/mixpanel.module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19419,7 +19419,7 @@ MixpanelPeople.prototype.union = addOptOutCheckMixpanelPeople(function(list_name
1941919419
* @param {Function} [callback] If provided, the callback will be called when the server responds
1942019420
* @deprecated
1942119421
*/
19422-
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function(amount, properties, callback) {
19422+
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function() {
1942319423
console$1.error('mixpanel.people.track_charge() is deprecated and no longer has any effect.');
1942419424
});
1942519425

dist/mixpanel.umd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19425,7 +19425,7 @@
1942519425
* @param {Function} [callback] If provided, the callback will be called when the server responds
1942619426
* @deprecated
1942719427
*/
19428-
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function(amount, properties, callback) {
19428+
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function() {
1942919429
console$1.error('mixpanel.people.track_charge() is deprecated and no longer has any effect.');
1943019430
});
1943119431

examples/commonjs-browserify/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19423,7 +19423,7 @@ MixpanelPeople.prototype.union = addOptOutCheckMixpanelPeople(function(list_name
1942319423
* @param {Function} [callback] If provided, the callback will be called when the server responds
1942419424
* @deprecated
1942519425
*/
19426-
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function(amount, properties, callback) {
19426+
MixpanelPeople.prototype.track_charge = addOptOutCheckMixpanelPeople(function() {
1942719427
console$1.error('mixpanel.people.track_charge() is deprecated and no longer has any effect.');
1942819428
});
1942919429

0 commit comments

Comments
 (0)