GiveToken / GiftBox

Repository for Sizzle
0 stars 0 forks source link

[1052] Fixes iOS Polymer Pop-up Bug #1060

Closed shreydesai closed 8 years ago

shreydesai commented 8 years ago

Added the following to document.ready() - on each click, the dialog will be closed, similar to what happens in the _closeInterestDialog function. An additional remove() method is added to ensure the element is removed from the DOM.

  // closes dialog box on click (iOS patch)
  $(this).click(function() {
    $('.interest-dialog').each(function(i, dialog) {
      dialog.close();
      $(this).remove();
    });
  });
wogsland commented 8 years ago

I am still seeing issue #1052 on the simulator.

Additionally, I did an token/polybuild.sh 1A and found changes:

modified:   token/1A/recruiting_token.build.html
modified:   token/1A/recruiting_token.min.js

but even with these changes the bug is still present.

shreydesai commented 8 years ago

Just so I know where this error came from, did you click on the images at the top of the screen or somewhere else?

wogsland commented 8 years ago

Wait for popup to appear. Click CANCEL on the popup. Click on the company section, any of the job description links or any of the city links. There will still be a popup overlain on the new page.

shreydesai commented 8 years ago

Corrupted branch. Sending in another pull request.