Matthew Hasbach

Results 6 issues of Matthew Hasbach

See https://github.com/akoenig/angular-deckgrid/issues/97

It would be cool if angular-deckgrid could be imported and passed to `angular.module` ``` var angular = require('angular'), angularDeckgrid = require('angular-deckgrid'); angular.module('myApp', [angularDeckgrid]); ``` That would be a big plus...

Why does `teoria.note.chord('maj')` produce a major seventh chord, while `teoria.note.chord()`, `teoria.note.chord('M')`, and `teoria.note.chord('major')` produce a major triad? ``` var notes = []; teoria.note('C4').chord('maj').notes().forEach(function(note){ notes.push(note.scientific()); }); console.log(notes.join(',')); // C4,E4,G4,B4 ``` By...

Please consider pulling in the modification to font.js that @spalax recently made. One of my projects recently started throwing a `ReferenceError: Can't find variable: WebFont` exception, and his change fixed...

Given a typedef: ``` /** * Playback position expressed in bars:quarters:sixteenths format (e.g. `"1:2:0"`) * @typedef {string} transportTime * @global */ ``` When that type is used in a param:...

bug
help wanted