Skip to content

Commit 108a14a

Browse files
Merge pull request #163 from bitovi/162-get-documentation-working
162 get documentation working
2 parents 9402c2d + ec6bb34 commit 108a14a

File tree

235 files changed

+34542
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

235 files changed

+34542
-3
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ build
55
*.orig
66
.DS_Store
77
dist
8+
docs/
9+
guides/
10+
site/node_modules/
11+
!site/lib/
12+
!site/**/lib/

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
funcunit.com

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
publish-docs:
2+
git checkout -b gh-pages
3+
$(MAKE) -C site build
4+
npm install
5+
./node_modules/.bin/documentjs -fd
6+
git add -f docs/
7+
git add -f guides/
8+
git add -f site/
9+
git add -f index.html
10+
git add -f CNAME
11+
git commit -m "Publish docs"
12+
git push -f origin gh-pages
13+
git checkout -
14+
git branch -D gh-pages

browser/actions.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ $.extend(FuncUnit.prototype, {
161161
*
162162
* Sends keys into an element. Only difference here from type is
163163
* that an implicit click is not performed
164-
* @codeend
165164
*
166165
* @param {String} keys the keys you want to send
167166
* @param {Function} [success] a callback that is run after typing, but before the next action.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)