Commit 1620582c60e8cfac9e93f7b1f6e08fea237275e8

Authored by Digvijay Singh
1 parent 5684145ce6
Exists in master and in 1 other branch admin

close dialog

Showing 1 changed file with 5 additions and 1 deletions   Show diff stats
src/components/Profile.vue
... ... @@ -2,7 +2,7 @@
2 2 <main class="landing-page">
3 3 <!-- profile -->
4 4 <div class="popup-wrp" style="display: none">
5   - <div class="overlay"></div>
  5 + <div class="overlay" @click="hideDialog"></div>
6 6 <div class="popup-set" id="add-profile" style="display: none">
7 7 <div class="popup-header">
8 8 <div class="user-photo common_color">
... ... @@ -624,6 +624,10 @@ export default {
624 624 $(".inner-wrp").removeClass("body-blur");
625 625 this.saveProfile();
626 626 },
  627 + hideDialog() {
  628 + $(".popup-wrp").hide();
  629 + $(".inner-wrp").removeClass("body-blur");
  630 + },
627 631 ///
628 632 caseDialog() {
629 633 $(".rp-all").removeClass("active");
... ...