This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
Port of MicroEvent in Coffeescript with some naming modifications | |
and a new 'once' method. | |
Original project: | |
https://github.com/jeromeetienne/microevent.js | |
### | |
class MicroEvent | |
_init:-> @_listn or @_listn = {} | |
_create:(e)-> @_init()[e] or @_init()[e] = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
Port of MicroEvent in Coffeescript with some naming modifications | |
and a new 'once' method. | |
Original project: | |
https://github.com/jeromeetienne/microevent.js | |
### | |
class MicroEventClass | |
_init:-> @_listn or @_listn = {} | |
_create:(e)-> @_init()[e] or @_init()[e] = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit here - set path to you directory with config.json & fonts | |
FONT_DIR ?= ./assets/vendor/fontello/src | |
### Don't edit below ### | |
FONTELLO_HOST ?= http://fontello.com | |
fontopen: | |
@if test ! `which curl` ; then \ |