Skip to content

Instantly share code, notes, and snippets.

@jskrepnek
jskrepnek / ng-jasmine-resource-matcher.js
Created March 2, 2014 20:25
Custom Jasmine matcher for writing expectations against resource objects
beforeEach(function() {
this.addMatchers({
toEqualData: function(expected) {
return angular.equals(this.actual, expected);
}
});
});
@jskrepnek
jskrepnek / index.html
Last active December 31, 2015 17:59
AngularJS text carousel directive
<div>
I really like to <span text-carousel values="run, walk, bike, jog, eat, sleep, and drink"></span>.
</div>