Skip to content

Commit 340bca2

Browse files
committed
Update file: malihu-custom-scrollbar-plugin-by-malihu.html
1 parent 6c6c87a commit 340bca2

File tree

1 file changed

+59
-83
lines changed

1 file changed

+59
-83
lines changed

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

Lines changed: 59 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -174,93 +174,69 @@ <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-
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
177+
<h1>malihu custom scrollbar plugin</h1>
178+
<p>Highly customizable custom scrollbar jQuery plugin (<a href="http://manos.malihu.gr/repository/custom-scrollbar/demo/examples/complete_examples.html">Demo</a>). Features include: </p>
179+
<ul>
180+
<li>Vertical and/or horizontal scrollbar(s) </li>
181+
<li>Adjustable scrolling momentum </li>
182+
<li>Mouse-wheel, keyboard and touch support </li>
183+
<li>Ready-to-use themes and customization via CSS </li>
184+
<li>RTL direction support </li>
185+
<li>Option parameters for full control of scrollbar functionality </li>
186+
<li>Methods for triggering actions like scroll-to, update, destroy etc. </li>
187+
<li>User-defined callbacks </li>
188+
<li>Selectable/searchable content</li>
189+
</ul>
190+
<p><strong><a href="http://manos.malihu.gr/jquery-custom-content-scroller/">Plugin homepage and documentation</a></strong> (<a href="http://manos.malihu.gr/jquery-custom-content-scroller/2/">Changelog</a>) </p>
191+
<h4>Installation</h4>
192+
<p>npm: <code>npm install malihu-custom-scrollbar-plugin</code> </p>
193+
<p>Bower: <code>bower install malihu-custom-scrollbar-plugin</code> </p>
194+
<p><a href="http://manos.malihu.gr/jquery-custom-content-scroller/#get-started-section">Manual</a> </p>
195+
<h4>Usage</h4>
196+
<p>Manual: <code>$(selector).mCustomScrollbar();</code> </p>
197+
<p><a href="http://browserify.org/">Browserify</a>: </p>
198+
<pre><code>var $ = require('jquery');
199+
require('malihu-custom-scrollbar-plugin')($);</code></pre>
200+
<p><a href="https://webpack.github.io/">webpack</a>: </p>
201+
<pre><code>npm install imports-loader
202+
npm install jquery-mousewheel
203+
npm install malihu-custom-scrollbar-plugin
204+
205+
module.exports = {
206+
module: {
207+
loaders: [
208+
{ test: /jquery-mousewheel/, loader: "imports?define=&gt;false&amp;this=&gt;window" },
209+
{ test: /malihu-custom-scrollbar-plugin/, loader: "imports?define=&gt;false&amp;this=&gt;window" }
210+
]
211+
}
212+
};
213+
214+
var $ = require('jquery');
215+
require("jquery-mousewheel")($);
216+
require('malihu-custom-scrollbar-plugin')($);</code></pre>
217+
<h2>Requirements</h2>
218+
<p>jQuery version <strong>1.6.0</strong> or higher</p>
219+
<h2>Browser compatibility</h2>
220+
<ul>
221+
<li>Internet Explorer 8+ </li>
222+
<li>Firefox </li>
223+
<li>Chrome </li>
224+
<li>Opera </li>
225+
<li>Safari </li>
226+
<li>iOS </li>
227+
<li>Android </li>
228+
<li>Windows Phone</li>
229+
</ul>
230+
<h2>License </h2>
231+
<p>MIT License (MIT)</p>
232+
<p><a href="http://opensource.org/licenses/MIT">http://opensource.org/licenses/MIT</a></p>
233+
<h2>Donate </h2>
234+
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=UYJ5G65M6ZA28">https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=UYJ5G65M6ZA28</a></p>
259235
</div>
260236

261237
<div class="tab-pane fade" id="changelog" role="tabpanel" aria-labelledby="changelog-tab">
262238
<ul id="changelogList">
263-
{"message":"Not Found","documentation_url":"https://docs.github.com/rest/repos/contents#get-repository-content","status":"404"}
239+
<p>{&quot;message&quot;:&quot;Not Found&quot;,&quot;documentation_url&quot;:&quot;<a href="https://docs.github.com/rest/repos/contents#get-repository-content&quot;,&quot;status&quot;:&quot;404">https://docs.github.com/rest/repos/contents#get-repository-content","status":"404</a>&quot;}</p>
264240
</ul>
265241
</div>
266242

0 commit comments

Comments
 (0)