Giter VIP home page Giter VIP logo

lionbars's Issues

Scroll with javascript

Hi,

I need to scroll a div to the bottom with javascript.
I'm doing it calling the method I created:

function scroll_to_bottom(elem){
    $(elem).each(function( index ) {
        $(this).scrollTop($(this)[0].scrollHeight)
    });
}

Unfortunately, it doesn't work, though it works fine when I'm not using lionbars.

Incompatible with latest JQuery 1.9.1

Replacing JQuery 1.6.4 with JQuery 1.9.1 results in lionbars not working.

Firebug throws:

ReferenceError: jQuery is not defined
ReferenceError: $ is not defined

Stylesheet error

I'm having trouble with this piece of html in the file lionbars.css. My rails application is throwing error in production.

  <!--[if IE 8]>
    <style>
      .lb-v-scrollbar { background: red; }
    </style>
  <![endif]-->

Scrollbars always show after ajax update with less content

If initially the content was shorter than the height, then the scrollbars are hidden (perfect), then update with longer content and the scrollbars shows (perfect). But the opposite is just not true.

Steps to Reproduce:
Set the height to be fixed (300px in my case), add content that is longer and the scrollbars will show. Then update the content to be less than the height.

Expected:
scrollbars to hide.

Actual:
scrollbars remain showing.

Attempts:
I tried to call the Update and mainLoop functions but nothing helps.

Default OS X scrollbars appear

In order to hide the default OS X scrollbars when using lionbars, I believe you need to add this to the stylesheet:

.lb-wrap::-webkit-scrollbar {
  visibility: hidden;
}

Different bar length than OSX

Because the default icons appear (issue #13) I can tell that the bar lengths are different than those that OSX display. Would be neat if you could find out how long they should be and make them the same ๐Ÿ˜„

Problem with dynamic elements

For examples, I have a one page application. Apply lionscrollbar to empty dom element. Then add some html to it's content.

Expected result:
lionbars scrollbars are shown

Actual result:
standard os scrollbars are shown

Example:

<div id="scrollbar" style="height:50px; width: 50px;font-size:36px"></div>
<script>
$('#scrollbar').lionbars({
   autohide: true,
   reachBottom: function () {alert(true) }
});

setTimeout(function() {
$('#scrollbar').html('<div>SOME DOM ELEMENTS</div><div>SOME DOM ELEMENTS</div>');
}, 5000);
</script>

There is a bug with wrapper and lionbars id

Change this

el.wrapInner('<div class="lb-wrap" id="lb-wrap-'+id+'-'+elemId+'"></div>');
wrap = $('#lb-wrap-'+id+'-'+elemId);

To this:

wrap = el.wrapInner('<div class="lb-wrap" id="lb-wrap-'+id+'-'+elemId+'"></div>').children(0);

Otherewise some element will be wrapped twice if you use ajax or some timers to update its content

Problem with dynamic element size

Set width to 30% for some dom element. Apply lionbars to this element. Try to resize browser window.

Expected result:
Dom element width is resized

Actual result:
Dom element width constantly equals to initialized value

Problem to display expandable elements with lionbars

There is an accordion widget on the page (all elements are collapsed). Apply lionbars to accordion parent dom element. Click on some element.

Expected result:
lionbars are shown

Actual result:
standard scrollbars are shown

Lincense

Hi, great project!

Could you please add a license file? Otherwise it's not clear if this is open source or not. :-)

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.