Skip to content

Commit 5bb987a

Browse files
committed
Move stuff into support/.
1 parent 738704a commit 5bb987a

19 files changed

+15
-15
lines changed

Makefile

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@ watch:
1515
# Main distribution
1616
flatdoc.js: \
1717
src/flatdoc.js \
18-
vendor/marked.js \
19-
vendor/base64.js
18+
support/vendor/marked.js \
19+
support/vendor/base64.js
2020
cat $^ > $@
2121

2222
# Legacy shims for IE
2323
legacy.js: \
2424
support/legacy-header.js \
25-
vendor/html5shiv.js \
26-
vendor/respond.js
25+
support/vendor/html5shiv.js \
26+
support/vendor/respond.js
2727
cat $^ > $@
2828

2929
%.css: %.styl
3030
$(STYLUS) < $< > $@
3131

3232
theme-white/script.js: \
3333
theme-white/setup.js \
34-
vendor/jquery.scrollagent.js \
35-
vendor/jquery.anchorjump.js \
36-
vendor/jquery.fillsize.js
34+
support/vendor/jquery.scrollagent.js \
35+
support/vendor/jquery.anchorjump.js \
36+
support/vendor/jquery.fillsize.js
3737
cat $^ > $@
3838

3939
Reference.md: src/flatdoc.js

examples/big-button.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<base href='..'>
1010

1111
<!-- Flatdoc -->
12-
<script src='vendor/jquery.js'></script>
12+
<script src='support/vendor/jquery.js'></script>
1313
<script src='legacy.js'></script>
1414
<script src='flatdoc.js'></script>
1515

examples/github.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<base href='..'>
1010

1111
<!-- Flatdoc -->
12-
<script src='vendor/jquery.js'></script>
12+
<script src='support/vendor/jquery.js'></script>
1313
<script src='legacy.js'></script>
1414
<script src='flatdoc.js'></script>
1515

examples/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<base href='..'>
1010

1111
<!-- Flatdoc -->
12-
<script src='vendor/jquery.js'></script>
12+
<script src='support/vendor/jquery.js'></script>
1313
<script src='legacy.js'></script>
1414
<script src='flatdoc.js'></script>
1515

examples/patterns.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<base href='..'>
1010

1111
<!-- Flatdoc -->
12-
<script src='vendor/jquery.js'></script>
12+
<script src='support/vendor/jquery.js'></script>
1313
<script src='legacy.js'></script>
1414
<script src='flatdoc.js'></script>
1515

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>Flatdoc</title>
99

1010
<!-- Flatdoc -->
11-
<script src='vendor/jquery.js'></script>
11+
<script src='support/vendor/jquery.js'></script>
1212
<script src='legacy.js'></script>
1313
<script src='flatdoc.js?94850'></script>
1414

reference.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>Flatdoc</title>
99

1010
<!-- Flatdoc -->
11-
<script src='vendor/jquery.js'></script>
11+
<script src='support/vendor/jquery.js'></script>
1212
<script src='legacy.js'></script>
1313
<script src='flatdoc.js'></script>
1414

Notes.md renamed to support/Notes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This will (re-) build auto-generated files (stylus, etc).
1515
### Update vendor files
1616
This will download files.
1717

18-
$ cd vendor; make *.js
18+
$ cd support/vendor/; make *.js
1919

2020
### Make a release
2121
This will concat/compress things into a build in `/v/0.8.0`.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/env.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = function(done) {
1414
jsdom.env({
1515
html: getFile('test/fixtures/context.html'),
1616
src: [
17-
getFile('vendor/jquery.js'),
17+
getFile('support/vendor/jquery.js'),
1818
getFile('flatdoc.js')
1919
],
2020
done: function(errors, window) {

0 commit comments

Comments
 (0)