12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
/* Copyright (c) 2015 Hyunje Alex Jun and other contributors
|
|
* Licensed under the MIT License
|
|
*/
|
|
'use strict';
|
|
|
|
var ps = require('../plugin/ps');
|
|
|
|
window.PerfectScrollbar = ps;
|
|
if (typeof window.Ps === 'undefined') {
|
|
window.Ps = ps;
|
|
}
|