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
################################################################################ | |
# Created 07 Jan 2016 by Jordan Robert Dobson / @jordandobson / JordanDobson.com | |
################################################################################ | |
# | |
# Valid & Tested InputField Types: "text", "email", "number", "url", "tel", "password", "search" | |
# | |
# These types REQUIRE a value: property in the correct format and IGNORE the placeholder property. | |
# | |
# * time: "12:38" | |
# * month: "2016-01" |
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
class exports.Timeline | |
constructor: (@timelines) -> | |
@timeline = "" | |
@pointer = 0 | |
@master = [] | |
@makeTimelines() | |
@constructStrings() | |
makeTimelines: () -> |