Build for 1.0.1.
This commit is contained in:
+7
-1
@@ -162,7 +162,13 @@ jasmine.TrivialReporter.prototype.reportSpecResults = function(spec) {
|
|||||||
|
|
||||||
jasmine.TrivialReporter.prototype.log = function() {
|
jasmine.TrivialReporter.prototype.log = function() {
|
||||||
var console = jasmine.getGlobal().console;
|
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() {
|
jasmine.TrivialReporter.prototype.getLocation = function() {
|
||||||
|
|||||||
+2
-2
@@ -2416,6 +2416,6 @@ jasmine.getGlobal().clearInterval = function(timeoutKey) {
|
|||||||
jasmine.version_= {
|
jasmine.version_= {
|
||||||
"major": 1,
|
"major": 1,
|
||||||
"minor": 0,
|
"minor": 0,
|
||||||
"build": 0,
|
"build": 1,
|
||||||
"revision": 1284494074
|
"revision": 1286311016
|
||||||
};
|
};
|
||||||
|
|||||||
+1
-1
Submodule pages updated: 9ef772465f...366a658e43
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"major": 1,
|
"major": 1,
|
||||||
"minor": 0,
|
"minor": 0,
|
||||||
"build": 0
|
"build": 1
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user