Skip to content
This repository has been archived by the owner on Jul 9, 2020. It is now read-only.

Commit

Permalink
Version 0.3.96
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Jun 16, 2011
1 parent f1c86ad commit df263e5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2011-06-14 0.3.96
--------------------
* Fix zeta.js

## 2011-06-02 0.3.95
--------------------
* jquery 1.6.1
Expand Down
2 changes: 1 addition & 1 deletion zetalibrary/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
import os.path

version_info = (0, 3, 95)
version_info = (0, 3, 96)

__version__ = version = '.'.join(map(str, version_info))
__project__ = PROJECT = __name__
Expand Down
6 changes: 3 additions & 3 deletions zetalibrary/zetalib/zeta.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ require("jquery.js");

zeta.log = function(){
zeta.history.push(arguments);
if(window.console) window.console.log(Array.prototype.slice.call(arguments));
if(window.console) { window.console.log(Array.prototype.slice.call(arguments)); }
};

document.documentElement.className += 'js'
document.documentElement.className += ' js';

$(document).ready(function(){ zeta.start() });
$(document).ready(function(){ zeta.start(); });

})(jQuery);

0 comments on commit df263e5

Please sign in to comment.