forked from hprose/hprose-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
@@ -4820,7 +4820,7 @@ hprose.global = ( | |
* * | ||
* hprose client for JavaScript. * | ||
* * | ||
* LastModified: Dec 5, 2016 * | ||
* LastModified: Feb 14, 2017 * | ||
* Author: Ma Bingyao <[email protected]> * | ||
* * | ||
\**********************************************************/ | ||
|
@@ -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]); | ||
} | ||
} | ||
} | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
* * | ||
* hprose client for JavaScript. * | ||
* * | ||
* LastModified: Dec 5, 2016 * | ||
* LastModified: Feb 14, 2017 * | ||
* Author: Ma Bingyao <[email protected]> * | ||
* * | ||
\**********************************************************/ | ||
|
@@ -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]); | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.