Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Commit

Permalink
Todo is now changelog.
Browse files Browse the repository at this point in the history
Tweaks to navigation links.
  • Loading branch information
assaf committed Dec 22, 2010
1 parent 5234ecf commit c54c233
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
8 changes: 2 additions & 6 deletions TODO.md
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
TODO Wishlist
==== ========


* Use HTML5 parser (see https://github.com/aredridel/html5) * Use HTML5 parser (see https://github.com/aredridel/html5)


Expand All @@ -22,7 +22,3 @@ TODO
requests (pages, forms and XHR). requests (pages, forms and XHR).


* Prompts: handle window.confirm and window.alert. * Prompts: handle window.confirm and window.alert.

* Enhance DOM with find/filter/html/text methods on elements and node lists.

* More documentation.
6 changes: 3 additions & 3 deletions doc/_layout.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<div id="header"> <div id="header">
<div class="title"><a href="/">Zombie.js</a></div> <div class="title"><a href="/">Zombie.js</a></div>
<ul class="navigation"> <ul class="navigation">
<li><a href="/">Documentation</a></li> <li><a href="/">Explained</a></li>
<li><a href="/changelog.html">Changelog</a></li> <li><a href="/changelog.html">Changes</a></li>
<li><a href="/todo.html">Todo</a></li> <li><a href="/todo.html">Todo</a></li>
<li><a href="/source/">Annotated</a></li> <li><a href="/source/">Annotated</a></li>
<li><a href="https://github.com/jeresig/sizzle/wiki">Sizzle.js</a></li> <li><a href="https://github.com/jeresig/sizzle/wiki">Sizzle.js</a></li>
<li><a href="https://github.com/assaf/zombie/issues">Issues</a></li> <li><a href="https://github.com/assaf/zombie/issues">Issues</a></li>
<li><a href="https://github.com/assaf/zombie">Fork Me</a></li> <li><a href="https://github.com/assaf/zombie">Source</a></li>
</ul> </ul>
</div> </div>
<div id="content"> <div id="content">
Expand Down
2 changes: 1 addition & 1 deletion src/zombie/browser.coffee
Original file line number Original file line Diff line number Diff line change
@@ -1,9 +1,9 @@
jsdom = require("jsdom") jsdom = require("jsdom")

require "./jsdom_patches" require "./jsdom_patches"
require "./sizzle" require "./sizzle"
require "./forms" require "./forms"



# Use the browser to open up new windows and load documents. # Use the browser to open up new windows and load documents.
# #
# The browser maintains state for cookies and localStorage. # The browser maintains state for cookies and localStorage.
Expand Down
2 changes: 1 addition & 1 deletion src/zombie/cookies.coffee
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class Cookies
# The default separator is a line break, useful to output when # The default separator is a line break, useful to output when
# debugging. If you need to save/load, use comma as the line # debugging. If you need to save/load, use comma as the line
# separator and then call `cookies.update`. # separator and then call `cookies.update`.
this.dump(separator = "\n") = -> this.dump = (separator = "\n")->
(serialize.apply this, match for match in selected()).join(separator) (serialize.apply this, match for match in selected()).join(separator)




Expand Down

0 comments on commit c54c233

Please sign in to comment.