|
@@ -1,7 +1,7 @@
|
|
|
/*
|
|
|
* SUI Web
|
|
|
* 基于 jQuery 的 UI 库,适用于 Web 应用程序
|
|
|
- * 当前版本:1.2.9
|
|
|
+ * 当前版本:1.2.11
|
|
|
* 最后更新日期:2024/8/2
|
|
|
* 依赖:
|
|
|
* jQuery
|
|
@@ -990,7 +990,7 @@ window.DoGetCaretPosition = function (oField) {
|
|
|
*/
|
|
|
var SUI = new function () {
|
|
|
// SUI 版本号
|
|
|
- this.Version = '1.2.10';
|
|
|
+ this.Version = '1.2.11';
|
|
|
|
|
|
// SUI 更新时间
|
|
|
this.UpdateDate = Date.DateFormat('2024/8/5');
|
|
@@ -1965,7 +1965,9 @@ SUI.Browser = new function () {
|
|
|
info += "Android";
|
|
|
}
|
|
|
} else if (platform.indexOf("Linux") > -1) {
|
|
|
- if (ua.indexOf('Android') > -1) {
|
|
|
+ if (ua.indexOf('HarmonyOS') > -1) {
|
|
|
+ info = 'HarmonyOS';
|
|
|
+ } else if (ua.indexOf('Android') > -1) {
|
|
|
info = ua.match(/Android [\d.]+/)[0];
|
|
|
} else {
|
|
|
info += "Linux";
|