Skip to content

Commit d80cb4d

Browse files
author
Tracy Abrahms
committed
correct license and reduce underscore dep
1 parent cbbd608 commit d80cb4d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ function get_speakers() {
3838
return speaker_profile({cities: cities})
3939

4040
function speaker_profile(city_map) {
41-
_.each(city_map.cities, function(city) {
42-
_.each(city.speakers, function(speaker) {
43-
speaker.about_me = marked(speaker.about_me)
41+
city_map.cities.forEach(function(city) {
42+
city.speakers.forEach(function(speaker) {
43+
speaker.about_me = marked(speaker.about_me)
4444
})
4545
})
4646
return city_map

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"url": "git://github.com/knode/knode.github.io.git"
1717
},
1818
"author": "",
19-
"license": "BSD-2-Clause",
19+
"license": "MIT",
2020
"bugs": {
2121
"url": "https://github.com/knode/knode.github.io/issues"
2222
},

0 commit comments

Comments
 (0)