Skip to content

Commit

Permalink
Edit copy and package settings for 0.4.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jstoudt committed Nov 24, 2013
1 parent 365d99e commit b133206
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "enscroll",
"version": "0.4.2",
"version": "0.4.3",
"main": "js/mylibs/enscroll.js",
"ignore": ["**/*.md", "**/*.png", "**/*.jpg", "**/*.gif", "releases/*", "README", "**/*.html", "**/*.ico", "**/*.txt", "**/*.handlebars"],
"dependencies": {"jquery", ">1.7.1"}
Expand Down
3 changes: 1 addition & 2 deletions humans.txt
Expand Up @@ -2,7 +2,7 @@

/* MAIN */
Developed by: Jason T. Stoudt
Twitter: @Enscroll @JasonStoudt
Twitter: @JasonStoudt
Site: http://enscrollplugin.com/

/* TEAM */
Expand All @@ -16,7 +16,6 @@ Shiva B. for the web hosting
Code Languages: HTML5, CSS, CSS3, Javascript
Components: h5bp, jQuery
Software: http://sass-lang.com/
http://html5boilerplate.com/
http://handlebarsjs.com/
http://gruntjs.com/
``
Expand Down
4 changes: 2 additions & 2 deletions index.html
Expand Up @@ -40,9 +40,9 @@ <h1>Easily Customize Scrollbars!</h1>
<p>Do you have overflowing boxes with scrollbars on your site? Do you wish you could style those scrollbars to offer your users a consistent look &amp; feel across multiple browsers and platforms? Enscroll is a jQuery plugin that gives you the power to replace those scrollbars rendered by the web browser with ones that you design. Either replace the scrollbars with your own image or use custom CSS to style them anyway you desire.</p>
</div>
<aside role="complementary">
<a id="download-btn" class="cta png" href="releases/enscroll-0.4.2.min.js" download="enscroll-0.4.2.min.js" data-action="enscroll-0.4.2">
<a id="download-btn" class="cta png" href="releases/enscroll-0.4.3.min.js" download="enscroll-0.4.3.min.js" data-action="enscroll-0.4.3">
<h2 class="png">Download</h2>
<b>enscroll-0.4.2.min.js</b>
<b>enscroll-0.4.3.min.js</b>
<b>File Size: 15KB</b>
</a>
<a id="demo-btn" class="cta png" href="#demos" data-tab-link>
Expand Down
8 changes: 4 additions & 4 deletions js/mylibs/enscroll.js
Expand Up @@ -39,7 +39,7 @@
}
}( jQuery ));

(function( $, win, doc ) {
( function( $, win, doc, undefined ) {

var eventUtility = { // event helper functions

Expand Down Expand Up @@ -307,8 +307,8 @@
if ( data ) {
event = eventUtility.getEvent( event );
delta = event.detail ? -event.detail :
( window.client && window.client.engine.opera &&
window.client.engine.opera < 9.5 ) ? -event.wheelDelta :
( win.client && win.client.engine.opera &&
win.client.engine.opera < 9.5 ) ? -event.wheelDelta :
event.wheelDelta;
scrollIncrement = data.settings.scrollIncrement;

Expand Down Expand Up @@ -1026,7 +1026,7 @@
// stretch to the scrollWidth of the pane so the content
// scrolls horizontally beyond the vertical scrollbar
if ( !$.browser.msie || $.browser.msie && $.browser.version > 7 ) {
prybar = document.createElement( 'div' );
prybar = doc.createElement( 'div' );
$( prybar )
.css({
'width': '1px',
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "enscroll",
"version": "0.4.2",
"version": "0.4.3",
"description": "A jQuery plugin for creating custom scrollbars.",
"main": "Gruntfile.js",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions releases/enscroll-0.4.3.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b133206

Please sign in to comment.