Integrate perfect-scrollbar to make tests happy

This commit is contained in:
Michael 2020-05-05 05:22:14 +00:00
commit 6d47324342
39 changed files with 5022 additions and 36 deletions

View file

@ -0,0 +1,14 @@
'use strict';
var ps = require('../main');
if (typeof define === 'function' && define.amd) {
// AMD
define(ps);
} else {
// Add to a global object.
window.PerfectScrollbar = ps;
if (typeof window.Ps === 'undefined') {
window.Ps = ps;
}
}