Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 688 Bytes

notes.md

File metadata and controls

46 lines (32 loc) · 688 Bytes

To do

Feature requests

isGroupPaging lazy load animations for add/remove disable animation on imagesLoaded loading

Test

cellAlign wrapAround

Check

videos

Blog about

handling clicks vs. dragging HTML init lots of files

Parts

jQuery Bridget imagesLoaded flickity-imagesloaded cell-change (add/remove) syncing

IE8 quirks

scrollTop & scrollLeft can't set button.type = 'button' has to be button.setAttribute( 'type', 'button' ) cannot .focus() on a button that is disabled

function preventDefaultEvent( event ) {
  if ( event.preventDefault ) {
    event.preventDefault();
  } else {
    event.returnValue = false;
  }
}