Anton Shestakov <av6@dwimlabs.net>, Wed, 01 Nov 2017 00:50:57 +0800
Makefile: use file targets more, results in incremental building
Less work to do when only some files get changed, but more work when building
from scratch. But, multiple compilers can run in parallel.
coffee/favicon.coffee
Permissions: -rw-r--r--
class window.Tram.FaviconApp extends Backbone.View pipColors: Tram.colors.show @canvas = document.createElement('canvas') @listenTo(@model, 'change', @updateFavicon) color = @pipColors[@model.get('show')] ? @pipColors['default'] renderFavicon: (color) -> ctx = @canvas.getContext('2d') ctx.clearRect(0, 0, @canvas.width, @canvas.height) ctx.arc(8, 8, 5.5, 0, Math.PI * 2) @el.href = @canvas.toDataURL()