This file contains hidden or 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
/* global require, module */ | |
var EmberApp = require('ember-cli/lib/broccoli/ember-app'); | |
module.exports = function(defaults) { | |
var app = new EmberApp(defaults, { | |
'ember-cli-foundation-sass': { | |
'modernizr': true, | |
'fastclick': true, | |
'foundationJs': 'all' | |
} |
This file contains hidden or 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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<canvas id='c'></canvas> | |
<script type="text/javascript"> | |
document.addEventListener('DOMContentLoaded', function() { | |
var canvas = document.getElementById('c'); | |
canvas.width = canvas.height = 465; | |
var context = canvas.getContext('2d'); |