27 lines
246 B
JavaScript
27 lines
246 B
JavaScript
|
|
|
||
|
|
import button from '/elements/button.js';
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
export default class cancelButton extends button {
|
||
|
|
|
||
|
|
text = "Cancel";
|
||
|
|
|
||
|
|
float = "left";
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#ifdef ANDROID
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#else
|
||
|
|
|
||
|
|
display = "none";
|
||
|
|
|
||
|
|
#endif
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|