update Alert Icon

This commit is contained in:
梁灏 2018-06-25 11:20:56 +08:00
parent fabc249682
commit ffdb5001e0

View file

@ -80,16 +80,16 @@
switch (this.type) { switch (this.type) {
case 'success': case 'success':
type = 'ios-checkmark'; type = 'ios-checkmark-circle';
break; break;
case 'info': case 'info':
type = 'ios-information'; type = 'ios-information-circle';
break; break;
case 'warning': case 'warning':
type = 'android-alert'; type = 'ios-alert';
break; break;
case 'error': case 'error':
type = 'ios-close'; type = 'ios-close-circle';
break; break;
} }