Skip to content

Commit 4a1fb7f

Browse files
committed
Update file: malihu-custom-scrollbar-plugin-by-malihu.html
1 parent a0cbcb7 commit 4a1fb7f

File tree

1 file changed

+83
-2
lines changed

1 file changed

+83
-2
lines changed

jquery-plugins/malihu-custom-scrollbar-plugin-by-malihu.html

Lines changed: 83 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,12 +174,93 @@ <h1 id="packageName">Malihu Custom Scrollbar Plugin</h1>
174174
</div>
175175
<div class="tab-content mt-3" id="infoTabsContent">
176176
<div class="tab-pane fade show active" id="installation" role="tabpanel" aria-labelledby="installation-tab">
177-
No README available
177+
malihu custom scrollbar plugin
178+
================================
179+
180+
Highly customizable custom scrollbar jQuery plugin ([Demo](http://manos.malihu.gr/repository/custom-scrollbar/demo/examples/complete_examples.html)). Features include:
181+
182+
* Vertical and/or horizontal scrollbar(s)
183+
* Adjustable scrolling momentum
184+
* Mouse-wheel, keyboard and touch support
185+
* Ready-to-use themes and customization via CSS
186+
* RTL direction support
187+
* Option parameters for full control of scrollbar functionality
188+
* Methods for triggering actions like scroll-to, update, destroy etc.
189+
* User-defined callbacks
190+
* Selectable/searchable content
191+
192+
**[Plugin homepage and documentation](http://manos.malihu.gr/jquery-custom-content-scroller/)** ([Changelog](http://manos.malihu.gr/jquery-custom-content-scroller/2/))
193+
194+
#### Installation
195+
196+
npm: `npm install malihu-custom-scrollbar-plugin`
197+
198+
Bower: `bower install malihu-custom-scrollbar-plugin`
199+
200+
[Manual](http://manos.malihu.gr/jquery-custom-content-scroller/#get-started-section)
201+
202+
#### Usage
203+
204+
Manual: `$(selector).mCustomScrollbar();`
205+
206+
[Browserify](http://browserify.org/):
207+
208+
var $ = require('jquery');
209+
require('malihu-custom-scrollbar-plugin')($);
210+
211+
[webpack](https://webpack.github.io/):
212+
213+
npm install imports-loader
214+
npm install jquery-mousewheel
215+
npm install malihu-custom-scrollbar-plugin
216+
217+
module.exports = {
218+
module: {
219+
loaders: [
220+
{ test: /jquery-mousewheel/, loader: "imports?define=>false&this=>window" },
221+
{ test: /malihu-custom-scrollbar-plugin/, loader: "imports?define=>false&this=>window" }
222+
]
223+
}
224+
};
225+
226+
var $ = require('jquery');
227+
require("jquery-mousewheel")($);
228+
require('malihu-custom-scrollbar-plugin')($);
229+
230+
231+
Requirements
232+
-------------------------
233+
234+
jQuery version **1.6.0** or higher
235+
236+
Browser compatibility
237+
-------------------------
238+
239+
* Internet Explorer 8+
240+
* Firefox
241+
* Chrome
242+
* Opera
243+
* Safari
244+
* iOS
245+
* Android
246+
* Windows Phone
247+
248+
License
249+
-------------------------
250+
251+
MIT License (MIT)
252+
253+
http://opensource.org/licenses/MIT
254+
255+
Donate
256+
-------------------------
257+
258+
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UYJ5G65M6ZA28
178259
</div>
179260

180261
<div class="tab-pane fade" id="changelog" role="tabpanel" aria-labelledby="changelog-tab">
181262
<ul id="changelogList">
182-
No changelog available.
263+
{"message":"Not Found","documentation_url":"https://docs.github.com/rest/repos/contents#get-repository-content","status":"404"}
183264
</ul>
184265
</div>
185266

0 commit comments

Comments
 (0)