Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 420 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 420 Bytes

fastclick-cljs-packaged

Polyfill to remove click delays on browsers with touch UIs. Packaged for ClojureScript.

Usage

Add

[dmohs/fastclick-cljs-packaged "1.0.6"]

to your project.clj or build.boot file, then import FastClick into your ClojureScript namespace and enable it for the document body:

(ns my-app
    (:require FastClick))

(js/FastClick.attach (.-body js/document))