Skip to content

Commit 0cbe9c7

Browse files
author
yltwust
committed
Merge pull request #75 from AppCanOpenSource/develop
merge
2 parents bcaf2f0 + 4b83330 commit 0cbe9c7

11 files changed

Lines changed: 591 additions & 461 deletions

File tree

Engine/assets/widget/wintestNormal/uexWindow.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ <h1 class="ut ub-f1 ulev0 ut-s tx-c" tabindex="0">Window功能</h1>
4747
}
4848

4949
uexWindow.setSlidingWindowEnabled(0);
50+
uexWindow.setSwipeCloseEnable('{enable:0}')
5051
}
5152
function winBack(){
5253
// uexWindow.back(); //同一个页面使用<a>标签的href跳转,之后可以用back()返回

Engine/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ android {
5959
}
6060
}
6161
compileOptions {
62-
sourceCompatibility JavaVersion.VERSION_1_7
63-
targetCompatibility JavaVersion.VERSION_1_7
62+
sourceCompatibility JavaVersion.VERSION_1_6
63+
targetCompatibility JavaVersion.VERSION_1_6
6464
}
6565
}
6666

Engine/project.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-19
12-
proguard.config=proguard.pro
11+
target=android-21
12+
#proguard.config=proguard.pro

Engine/src/org/zywx/wbpalmstar/base/BConstant.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525

2626
public class BConstant {
2727

28+
public static final String ENGINE_VERSION="3.2.1";
29+
2830
public static final String F_URL = "url";
2931
public static final String F_WIDGET = "widget";
3032
public static final String F_MULTIPLEWINDOW = "MultipleWindow";
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Copyright (c) 2015. The AppCan Open Source Project.
3+
*
4+
* This program is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
*
18+
*/
19+
20+
package org.zywx.wbpalmstar.base.vo;
21+
22+
import java.io.Serializable;
23+
24+
/**
25+
* Created by ylt on 15/11/23.
26+
*/
27+
public class SetSwipeCloseEnableVO implements Serializable {
28+
private int enable;
29+
30+
public int getEnable() {
31+
return enable;
32+
}
33+
34+
public void setEnable(int enable) {
35+
this.enable = enable;
36+
}
37+
}

0 commit comments

Comments
 (0)