Skip to content

Commit eae110a

Browse files
committed
Release 0.1.3
1 parent 4ed60dd commit eae110a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

JSPatch.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "JSPatch"
3-
s.version = "0.1.1"
3+
s.version = "0.1.3"
44
s.summary = "JSPatch bridge Objective-C and JavaScript. You can call any" \
55
" Objective-C class and method in JavaScript by just" \
66
" including a small engine."

JSPatch/JSPatch.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,7 @@ var global = this
164164
})
165165
}
166166

167-
var console = global.console;
168-
if (console) {
167+
if (global.console) {
169168
var jsLogger = console.log;
170169
global.console.log = function() {
171170
global._OC_log.apply(global, arguments);

0 commit comments

Comments
 (0)