@@ -5,26 +5,26 @@ var __extends = (this && this.__extends) || function (d, b) {
5
5
} ;
6
6
var common = require ( "./signaturepad-common" ) ;
7
7
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 ( ) {
11
11
_super . call ( this ) ;
12
12
}
13
- Object . defineProperty ( CardView . prototype , "android" , {
13
+ Object . defineProperty ( SignaturePad . prototype , "android" , {
14
14
get : function ( ) {
15
15
return this . _android ;
16
16
} ,
17
17
enumerable : true ,
18
18
configurable : true
19
19
} ) ;
20
- Object . defineProperty ( CardView . prototype , "_nativeView" , {
20
+ Object . defineProperty ( SignaturePad . prototype , "_nativeView" , {
21
21
get : function ( ) {
22
22
return this . _android ;
23
23
} ,
24
24
enumerable : true ,
25
25
configurable : true
26
26
} ) ;
27
- CardView . prototype . _createUI = function ( ) {
27
+ SignaturePad . prototype . _createUI = function ( ) {
28
28
this . _android = new com . github . gcacace . signaturepad . views . SignaturePad ( this . _context , null ) ;
29
29
if ( ! this . _androidViewId ) {
30
30
this . _androidViewId = android . view . View . generateViewId ( ) ;
@@ -35,6 +35,6 @@ var CardView = (function (_super) {
35
35
if ( this . penWidth )
36
36
this . _android . setMinWidth ( this . penWidth ) ;
37
37
} ;
38
- return CardView ;
38
+ return SignaturePad ;
39
39
} ) ( common . SignaturePad ) ;
40
- exports . CardView = CardView ;
40
+ exports . SignaturePad = SignaturePad ;
0 commit comments