Skip to content

Commit

Permalink
Build dist
Browse files Browse the repository at this point in the history
  • Loading branch information
mercs600 committed Nov 2, 2022
1 parent 7261296 commit b36f2af
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 3 additions & 7 deletions dist/vue2-perfect-scrollbar.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,8 @@
};

EventElement.prototype.unbindAll = function unbindAll () {
var this$1 = this;

for (var name in this$1.handlers) {
this$1.unbind(name);
for (var name in this.handlers) {
this.unbind(name);
}
};

Expand Down Expand Up @@ -1147,8 +1145,6 @@
};

var PerfectScrollbar = function PerfectScrollbar(element, userSettings) {
var this$2 = this;

var this$1 = this;
if ( userSettings === void 0 ) { userSettings = {}; }

Expand All @@ -1166,7 +1162,7 @@

this.settings = defaultSettings();
for (var key in userSettings) {
this$2.settings[key] = userSettings[key];
this.settings[key] = userSettings[key];
}

this.containerWidth = null;
Expand Down
Loading

0 comments on commit b36f2af

Please sign in to comment.