Skip to content

Commit 4b062d4

Browse files
author
Mihail Slavchev
committed
bug fix
1 parent f83c324 commit 4b062d4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test-app/assets/internal/ts_helpers.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@
9494
function JavaProxy(className) {
9595
return function (target) {
9696
var extended = target.extend(className, target.prototype)
97-
return target;
97+
extended.name = className;
98+
return extended;
9899
};
99100
}
100101

0 commit comments

Comments
 (0)