Skip to content

Commit

Permalink
Build for 1.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
xian committed Oct 5, 2010
1 parent 550e378 commit 127fe04
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion lib/jasmine-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,13 @@ jasmine.TrivialReporter.prototype.reportSpecResults = function(spec) {

jasmine.TrivialReporter.prototype.log = function() {
var console = jasmine.getGlobal().console;
if (console && console.log) console.log.apply(console, arguments);
if (console && console.log) {
if (console.log.apply) {
console.log.apply(console, arguments);
} else {
console.log(arguments); // ie fix: console.log.apply doesn't exist on ie
}
}
};

jasmine.TrivialReporter.prototype.getLocation = function() {
Expand Down
4 changes: 2 additions & 2 deletions lib/jasmine.js
Original file line number Diff line number Diff line change
Expand Up @@ -2416,6 +2416,6 @@ jasmine.getGlobal().clearInterval = function(timeoutKey) {
jasmine.version_= {
"major": 1,
"minor": 0,
"build": 0,
"revision": 1284494074
"build": 1,
"revision": 1286311016
};
2 changes: 1 addition & 1 deletion pages
Submodule pages updated from 9ef772 to 366a65
2 changes: 1 addition & 1 deletion src/version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"major": 1,
"minor": 0,
"build": 0
"build": 1
}

0 comments on commit 127fe04

Please sign in to comment.