Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tower1229 committed Aug 10, 2018
1 parent a8bb893 commit ea30f4a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sdk/ui.css

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion sdk/ui.less
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,12 @@ input[type='submit'].btn-block, input[type='reset'].btn-block, input[type='butto
background: @gray-light;
z-index: 0;
transform:scale(0);
-webkit-transform:scale(0);
opacity: .5;
transition:all ease-out .5s;
-webkit-transition:all ease-out .5s;
}
.active .active-handle{transform:scale(1);opacity: 0;}
.active .active-handle{transform:scale(1);-webkit-transform:scale(1);opacity: 0;}
@media screen and (-webkit-min-device-pixel-ratio: 2) {
.item{border-bottom:0; }
.item:before{
Expand Down
Binary file removed view/root/index1.jpg
Binary file not shown.
Binary file removed view/root/index2.jpg
Binary file not shown.
Binary file removed view/root/index3.jpg
Binary file not shown.
2 changes: 1 addition & 1 deletion view/root/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ define(function(require) {
var id = json.id;
var content = json.content;
var extras = json.extras ? json.extras : {};
alert(`推送内容:${content}`);
alert("推送内容:"+content);
};
var pushFunc = function() {
//app内拦截自定义消息
Expand Down

0 comments on commit ea30f4a

Please sign in to comment.