Skip to content

Releases: YvesCoding/vuescroll

V4.4.7

21 Apr 18:06
Compare
Choose a tag to compare

Tweak

  • Add text-align to content

V4.4.6

21 Apr 16:59
Compare
Choose a tag to compare

Fix

  • RegExp for detect browser.

V4.4.5

21 Apr 16:19
Compare
Choose a tag to compare

v4.4.5

Tweak

  • Add -moz-fit-content style to scrollContent for firefox.

v4.4.4

Tweak

  • Add fit-content style to scrollContent to detect the width changes.

V4.4.3

21 Apr 01:44
Compare
Choose a tag to compare

Features

  • To disable scrollbar or rail, add disabled option to vRail, vBar, hRail, hBar

Tweaks

  • Now, when snapping or paging enable, the bar/rail will show.

V4.3.3

20 Apr 17:13
Compare
Choose a tag to compare

Features

  • Add paging and snapping options to the vuescroll option.
Usage
    ops: {
        vuescroll: {
            paging: true, // set scrollPanel's option scrollingX or Y to enable pagingX and pagingY
            snapping: {
                enable: false, // or true
                width: 100, // snap width
                height: 100 // snap height
            }
        }
    }

V4.2.3

19 Apr 08:13
Compare
Choose a tag to compare

Bug Fix

  • Can not drag scrollBar in IE/edge #14
  • Remove gutter when disabel scrollingX or scrollingY #15

V4.2.2

17 Apr 13:02
Compare
Choose a tag to compare

Features

  • Allow to change global options root property #8

V4.1.2-stable

17 Apr 09:30
Compare
Choose a tag to compare

#BugFix

V4.1.1

17 Apr 07:14
Compare
Choose a tag to compare

Features

  • Push-Load has been supported

Usage:

   ops: {
     vuescroll: {
         pushLoad: {
             enable: true
         }
     }  
   }
  • Allow to diable scrollingX or scrollingY #11

Usage:

  ops: {
    scrollPanel: {
      scrollingX: true,// false to diable
      scrollingY: true // false to diable
    }  
  }

Sweaks

  • Redefine pull-refresh tips from Array to Object

Before

  ops: {
      vuescroll: {
          pushRefreshTips: ['XX', 'XX']
      }
  }

Now

  ops: {
      vuescroll: {
          pushRefresh: {
              tips: {
                  start: "",
                  active: "",
                  deActive: "",
                  beforeActive: ""
              }
          }
      }
  }

v4.0

13 Apr 11:41
Compare
Choose a tag to compare

Features

  • Add a vuescroll option in ops. Now, you can choose two modes for vuescroll. slidemode or native mode.
 ops: {
  vuescroll: [
   mode: 'native' // native or slide
  }
  // other options...
}
  • Pull-refresh supported (Only for slide mode)

Bug Fix

  • Can't hide native scrollbar in FireFox.#10