Skip to content

Commit

Permalink
修复无法点击空白处取消选择任务
Browse files Browse the repository at this point in the history
  • Loading branch information
miniers committed Jun 26, 2017
1 parent 0e80b4c commit eb1e3ff
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions safari2aria.safariextension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>1.0</string>
<key>CFBundleShortVersionString</key>
<string>2.7</string>
<string>2.7.1</string>
<key>CFBundleVersion</key>
<string>2.7</string>
<string>2.7.1</string>
<key>Chrome</key>
<dict>
<key>Database Quota</key>
Expand Down Expand Up @@ -87,7 +87,7 @@
<key>Update From Gallery</key>
<true/>
<key>Update Manifest URL</key>
<string>https://miniers.github.io/safari2aria/update.plist?t=2.7</string>
<string>https://miniers.github.io/safari2aria/update.plist?t=2.7.1</string>
<key>Website</key>
<string>https://github.com/miniers/safari2aria</string>
</dict>
Expand Down
Binary file modified safari2aria.safariextz
Binary file not shown.
9 changes: 6 additions & 3 deletions src/pages/popover/components/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<!-- drawer content -->
<div slot="drawer">
<group :title="$t('Options')" >
<cell :title="$t('Open options panel')" is-link="true" @click.native="menuShow = false;openOptionsPanel();">
<cell :title="$t('Open options panel')" :is-link="true" @click.native="menuShow = false;openOptionsPanel();">
</cell>
</group>
<group title="User-Agent" v-if="uaList&&uaList.length>1">
Expand Down Expand Up @@ -328,12 +328,15 @@

<style lang="less">
.pop_wrapper {
display: flex;
flex-direction: column;
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
.vux-drawer > .vux-drawer-body{
display: flex;
flex-direction: column;
}
.pop_header {
flex: none;
}
Expand Down
2 changes: 0 additions & 2 deletions src/pages/popover/components/taskLine.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,6 @@
},
getStatus(){
debugger;
return this.$t(this.download.status) || '';
},
name: function () {
Expand Down

0 comments on commit eb1e3ff

Please sign in to comment.