0
vondrm1 created
Hello, is it possible to turn off the perfect-scrollbars in the leptonx theme without to build our custom theme? There is some options or other methods ?
Thank's for reply
Milan
4 Answer(s)
-
0
which UI?
-
0
We use MVC (Razor pages)
-
0
Hi,
We will remove it starting from the Leptonx theme 4.1.0 version.
You can try:
Add a
patch.js
to wwwrootleptonx.init.push("initPerfectScrollbar", function(){ console.log("Remove PerfectScrollbar method"); })
Add js file to the bundle
Configure<AbpBundlingOptions>(options => { options.ScriptBundles.Configure( LeptonXThemeBundles.Scripts.Global, bundle => { bundle.AddFiles("/patch.js"); } ); });
-
0
Hello, that works perfectly, thank you
Milan