Skip to content

Commit d6d4336

Browse files
committed
typo
1 parent 60d6321 commit d6d4336

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

signaturepad.android.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@ var __extends = (this && this.__extends) || function (d, b) {
55
};
66
var common = require("./signaturepad-common");
77
global.moduleMerge(common, exports);
8-
var CardView = (function (_super) {
9-
__extends(CardView, _super);
10-
function CardView() {
8+
var SignaturePad = (function (_super) {
9+
__extends(SignaturePad, _super);
10+
function SignaturePad() {
1111
_super.call(this);
1212
}
13-
Object.defineProperty(CardView.prototype, "android", {
13+
Object.defineProperty(SignaturePad.prototype, "android", {
1414
get: function () {
1515
return this._android;
1616
},
1717
enumerable: true,
1818
configurable: true
1919
});
20-
Object.defineProperty(CardView.prototype, "_nativeView", {
20+
Object.defineProperty(SignaturePad.prototype, "_nativeView", {
2121
get: function () {
2222
return this._android;
2323
},
2424
enumerable: true,
2525
configurable: true
2626
});
27-
CardView.prototype._createUI = function () {
27+
SignaturePad.prototype._createUI = function () {
2828
this._android = new com.github.gcacace.signaturepad.views.SignaturePad(this._context, null);
2929
if (!this._androidViewId) {
3030
this._androidViewId = android.view.View.generateViewId();
@@ -35,6 +35,6 @@ var CardView = (function (_super) {
3535
if (this.penWidth)
3636
this._android.setMinWidth(this.penWidth);
3737
};
38-
return CardView;
38+
return SignaturePad;
3939
})(common.SignaturePad);
40-
exports.CardView = CardView;
40+
exports.SignaturePad = SignaturePad;

signaturepad.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
global.moduleMerge(common, exports);
44

5-
export class CardView extends common.SignaturePad {
5+
export class SignaturePad extends common.SignaturePad {
66
private _android: com.github.gcacace.signaturepad.views.SignaturePad;
77

88
constructor() {

0 commit comments

Comments
 (0)