Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Latest commit

 

History

History
16 lines (10 loc) · 647 Bytes

README.rdoc

File metadata and controls

16 lines (10 loc) · 647 Bytes

AOL.Fart

An ExtJS 4.x fart class that allows you to play random fart sounds. Inspired by (and fart sounds borrowed from) the Onion fartscroll.js - github.com/theonion/fartscroll.js

How to use it?

Simple really, just include it with your other ExtJS 4 classes and call the playRandom method to play a random fart sound. The example below will play a random fart sound on every 100th click, which is what the class will do by default when it’s included as is.

Ext.getBody().on('click',function(){
    fart.count++;
    if (fart.count%100===0){
        fart.playRandom();
    }
});