can somebody explain what the following line is really doing ?
Code: Select all
$w.on("scroll.unveil resize.unveil lookup.unveil", unveil);
https://github.com/luis-almeida/unveil/ ... .unveil.js .
Moderator: General Moderators
Code: Select all
$w.on("scroll.unveil resize.unveil lookup.unveil", unveil);
There are three events listed that will trigger the action, and unveil is the action triggered when any of those events fire.events
Type: String
One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin".