Skip to content

Commit

Permalink
Fixed method name
Browse files Browse the repository at this point in the history
  • Loading branch information
andot committed Feb 14, 2017
1 parent a056349 commit d43f2c9
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Ma Bingyao <[email protected]>",
"name": "hprose",
"version": "2.0.30",
"version": "2.0.31",
"description": "Hprose is a High Performance Remote Object Service Engine.",
"keywords": [
"hprose",
Expand Down
4 changes: 2 additions & 2 deletions dist/hprose.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hprose.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/hprose.src.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Hprose for JavaScript v2.0.30
// Hprose for JavaScript v2.0.31
// Copyright (c) 2008-2016 http://hprose.com
// Hprose is freely distributable under the MIT license.
// For all details and documentation:
Expand Down Expand Up @@ -4820,7 +4820,7 @@ hprose.global = (
* *
* hprose client for JavaScript. *
* *
* LastModified: Dec 5, 2016 *
* LastModified: Feb 14, 2017 *
* Author: Ma Bingyao <[email protected]> *
* *
\**********************************************************/
Expand Down Expand Up @@ -5035,7 +5035,7 @@ hprose.global = (
}
else {
for (var n in m) {
setMethods(stub, obj[name], name + '_', n, m[n]);
setMethods(stub, obj[name], namespace + name + '_', n, m[n]);
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions example/hprose.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hprose-js",
"version": "2.0.30",
"version": "2.0.31",
"description": "Hprose is a High Performance Remote Object Service Engine.",
"homepage": "https://github.com/hprose/hprose-js",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions src/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* *
* hprose client for JavaScript. *
* *
* LastModified: Dec 5, 2016 *
* LastModified: Feb 14, 2017 *
* Author: Ma Bingyao <[email protected]> *
* *
\**********************************************************/
Expand Down Expand Up @@ -227,7 +227,7 @@
}
else {
for (var n in m) {
setMethods(stub, obj[name], name + '_', n, m[n]);
setMethods(stub, obj[name], namespace + name + '_', n, m[n]);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/CopyRight.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Hprose for JavaScript v2.0.30
// Hprose for JavaScript v2.0.31
// Copyright (c) 2008-2016 http://hprose.com
// Hprose is freely distributable under the MIT license.
// For all details and documentation:
Expand Down
4 changes: 2 additions & 2 deletions test/hprose.js

Large diffs are not rendered by default.

0 comments on commit d43f2c9

Please sign in to comment.