Skip to content

Commit

Permalink
block param check hot fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SeonMyungLim committed May 18, 2016
1 parent ab9d7a0 commit 0ec1d3f
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 70 deletions.
2 changes: 1 addition & 1 deletion dist/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -12512,7 +12512,7 @@ Entry.Func.requestParamBlock = function(b) {
return a;
};
Entry.Func.registerParamBlock = function(b) {
"string" === b.substr(0, 6) ? Entry.Func.createParamBlock(b, Entry.block.function_param_string, b) : "boolean" === b.substr(0, 7) && Entry.Func.createParamBlock(b, Entry.block.function_param_boolean, b);
-1 < b.indexOf("stringParam") ? Entry.Func.createParamBlock(b, Entry.block.function_param_string, b) : -1 < b.indexOf("booleanParam") && Entry.Func.createParamBlock(b, Entry.block.function_param_boolean, b);
};
Entry.Func.createParamBlock = function(b, a, c) {
var d = function() {
Expand Down
Loading

0 comments on commit 0ec1d3f

Please sign in to comment.