Skip to content

Commit 96f5d06

Browse files
committed
Merge branch 'master' into gh-pages
2 parents b19a4ed + 1aed9ec commit 96f5d06

31 files changed

+5024
-2838
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
raw
22
node_modules
3+
*.log
4+
*.idea
5+
*.swp

.travis.yml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
language: node_js
2+
addons:
3+
firefox: "10.0"
24
node_js:
3-
- 0.8
4-
- '0.10'
5+
- "0.8"
6+
- "0.12"
7+
- "io.js"
8+
matrix:
9+
include:
10+
- node_js: "0.10"
11+
env: BROWSER=true
12+
env: BROWSER=false
513
before_install:
6-
- 'npm install npm -g'
14+
- npm install -g npm
15+
- if [[ $BROWSER == true ]]; then npm install karma-phantomjs-launcher karma-firefox-launcher; fi
16+
before_script:
17+
- export DISPLAY=:99.0
18+
- sh -e /etc/init.d/xvfb start
19+
script:
20+
- npm test
21+
- "[ $BROWSER == false ] || ./node_modules/karma/bin/karma start --browsers Firefox,PhantomJS"
722
notifications:
823
email: false

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative
1+
Copyright (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative
22
Reporters & Editors
33

44
Permission is hereby granted, free of charge, to any person

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "underscore",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"main": "underscore.js",
55
"keywords": ["util", "functional", "server", "client", "browser"],
66
"ignore" : ["docs", "test", "*.yml", "CNAME", "index.html", "favicon.ico", "CONTRIBUTING.md"]

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"repo" : "jashkenas/underscore",
66
"main" : "underscore.js",
77
"scripts" : ["underscore.js"],
8-
"version" : "1.7.0",
8+
"version" : "1.8.0",
99
"license" : "MIT"
1010
}

docs/docco.css

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
}
2222

2323
@font-face {
24-
font-family: 'novecento-bold';
25-
src: url('public/fonts/novecento-bold.eot');
26-
src: url('public/fonts/novecento-bold.eot?#iefix') format('embedded-opentype'),
27-
url('public/fonts/novecento-bold.woff') format('woff'),
28-
url('public/fonts/novecento-bold.ttf') format('truetype');
24+
font-family: 'roboto-black';
25+
src: url('public/fonts/roboto-black.eot');
26+
src: url('public/fonts/roboto-black.eot?#iefix') format('embedded-opentype'),
27+
url('public/fonts/roboto-black.woff') format('woff'),
28+
url('public/fonts/roboto-black.ttf') format('truetype');
2929
font-weight: normal;
3030
font-style: normal;
3131
}
@@ -67,14 +67,17 @@ h1, h2, h3, h4, h5, h6 {
6767
color: #112233;
6868
line-height: 1em;
6969
font-weight: normal;
70-
font-family: "novecento-bold";
70+
font-family: "roboto-black";
7171
text-transform: uppercase;
7272
margin: 30px 0 15px 0;
7373
}
7474

7575
h1 {
7676
margin-top: 40px;
7777
}
78+
h2 {
79+
font-size: 1.26em;
80+
}
7881

7982
hr {
8083
border: 0;
-17.8 KB
Binary file not shown.
-47 KB
Binary file not shown.
-20.1 KB
Binary file not shown.

docs/public/fonts/roboto-black.eot

20.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)