├── .gitignore ├── Jakefile ├── LICENSE ├── README.md ├── VERSION ├── coolclock.js ├── demos ├── demo.html ├── demo2.html └── logclock.html └── moreskins.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbaird/CoolClock/HEAD/.gitignore -------------------------------------------------------------------------------- /Jakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbaird/CoolClock/HEAD/Jakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbaird/CoolClock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbaird/CoolClock/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0-pre 2 | -------------------------------------------------------------------------------- /coolclock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbaird/CoolClock/HEAD/coolclock.js -------------------------------------------------------------------------------- /demos/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbaird/CoolClock/HEAD/demos/demo.html -------------------------------------------------------------------------------- /demos/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbaird/CoolClock/HEAD/demos/demo2.html -------------------------------------------------------------------------------- /demos/logclock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbaird/CoolClock/HEAD/demos/logclock.html -------------------------------------------------------------------------------- /moreskins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbaird/CoolClock/HEAD/moreskins.js --------------------------------------------------------------------------------