Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
skyvow committed Sep 10, 2019
1 parent fd73ff5 commit 4d03eeb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/popover/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/popover/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
</view>
</wux-animation-group>
</view>
<view class="{{ classes.element }}" bindtap="onClick">
<view class="{{ classes.element }}" catchtap="onClick">
<slot></slot>
</view>
3 changes: 2 additions & 1 deletion example/dist/popover/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ baseComponent({
}
},
onMaskClick() {
if (this.data.maskClosable) {
const { maskClosable, popoverVisible } = this.data
if (maskClosable && popoverVisible) {
this.onChange()
}
},
Expand Down
2 changes: 1 addition & 1 deletion example/dist/popover/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
</view>
</wux-animation-group>
</view>
<view class="{{ classes.element }}" bindtap="onClick">
<view class="{{ classes.element }}" catchtap="onClick">
<slot></slot>
</view>
1 change: 0 additions & 1 deletion example/dist/spin/index.wxss
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@
.wux-spin__container--blur {
overflow: hidden;
opacity: .5;
-webkit-filter: blur(1rpx);
filter: blur(1rpx);
transform: translateZ(0)
}
Expand Down

0 comments on commit 4d03eeb

Please sign in to comment.