We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed60dd commit eae110aCopy full SHA for eae110a
JSPatch.podspec
@@ -1,6 +1,6 @@
1
Pod::Spec.new do |s|
2
s.name = "JSPatch"
3
- s.version = "0.1.1"
+ s.version = "0.1.3"
4
s.summary = "JSPatch bridge Objective-C and JavaScript. You can call any" \
5
" Objective-C class and method in JavaScript by just" \
6
" including a small engine."
JSPatch/JSPatch.js
@@ -164,8 +164,7 @@ var global = this
164
})
165
}
166
167
- var console = global.console;
168
- if (console) {
+ if (global.console) {
169
var jsLogger = console.log;
170
global.console.log = function() {
171
global._OC_log.apply(global, arguments);
0 commit comments