- aaron rodgers
- tom brady
- dree brees
- matthew stafford
This file contains 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
git log --first-parent --no-merges |
This file contains 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
function extend(obj) { | |
var slice = Array.prototype.slice; | |
slice.call(arguments, 1).forEach(function(source) { | |
var getter | |
, setter; | |
for (var key in source) { | |
getter = source.__lookupGetter__(key); | |
setter = source.__lookupSetter__(key); |
This file contains 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 isCommonJS, jasmine, spyOn, it, xit, expect, runs, waits, waitsFor, beforeEach, afterEach, describe, xdescribe */ |
This file contains 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
$('.example-countries .typeahead').typeahead({ | |
name: 'countries', | |
prefetch: '../data/countries.json', | |
limit: 10 | |
}); |
This file contains 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
$('.example-twitter-oss .typeahead').typeahead({ | |
name: 'twitter-oss', | |
prefetch: '../data/repos.json', | |
template: [ | |
'<p class="repo-language">{{language}}</p>', | |
'<p class="repo-name">{{name}}</p>', | |
'<p class="repo-description">{{description}}</p>' | |
].join(''), | |
engine: Hogan | |
}); |
This file contains 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
$('.example-arabic .typeahead').typeahead({ | |
name: 'arabic', | |
local: [ | |
"الإنجليزية", | |
"نعم", | |
"لا", | |
"مرحبا", | |
"کيف الحال؟", | |
"أهلا", | |
"مع السلامة", |
This file contains 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
$('.example-sports .typeahead').typeahead([ | |
{ | |
name: 'nba-teams', | |
prefetch: '../data/nba.json', | |
header: '<h3 class="league-name">NBA Teams</h3>' | |
}, | |
{ | |
name: 'nhl-teams', | |
prefetch: '../data/nhl.json', | |
header: '<h3 class="league-name">NHL Teams</h3>' |
This file contains 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
$('.example-films .typeahead').typeahead([ | |
{ | |
name: 'best-picture-winners', | |
remote: '../data/films/queries/%QUERY.json', | |
prefetch: '../data/films/post_1960.json', | |
template: '<p><strong>{{value}}</strong> – {{year}}</p>', | |
engine: Hogan | |
} | |
]); |
This file contains 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
(function(doc) { | |
var defaults = { | |
node: null, | |
pattern: null, | |
depth: -1, | |
tagName: 'strong', | |
className: 'jake', | |
wordsOnly: false, | |
caseSensitive: false |
OlderNewer