Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Website :: Clock not operating properly on safari mobile #197

Open
ghost opened this issue Apr 3, 2018 · 4 comments
Open

Website :: Clock not operating properly on safari mobile #197

ghost opened this issue Apr 3, 2018 · 4 comments

Comments

@ghost
Copy link

ghost commented Apr 3, 2018

Clock isn’t appearing on iPad Pro safari browser or any of the browsers I have installed on my iPad.

I looked at the custom elements repo for possible explanations.

@ghost
Copy link
Author

ghost commented Apr 5, 2018

Just to give you some heads up I'm going to look around the apple dev community forums and sites to see if their are any answers for this. I will try to provide a screenshot, soon.

@ghost
Copy link
Author

ghost commented Apr 9, 2018

The only thing I've noticed on the application I've downloaded onto my I-Pad called Working Copy is that it says that the global.js file doesn't read the xtag from the cdn.

I'm not sure if that is from the testing machine or what. I will place the core dist into the draft repo I created to do more testing.

@ghost
Copy link
Author

ghost commented Apr 9, 2018

Below is V1

win.xtag = xtag;

  if (typeof define == 'function' && define.amd) define(xtag);

  doc.addEventListener('WebComponentsReady', function(){

    xtag.fireEvent(doc.body, 'DOMComponentsLoaded');

  });

and v2.

  if (typeof define === 'function' && define.amd) {

    define(xtag);

    define(XTagElement);

  }

  else if (typeof module !== 'undefined' && module.exports) {

    module.exports = { xtag: xtag, XTagElement: XTagElement };

  }

  else {

    window.xtag = xtag;

    window.XTagElement = XTagElement;

  }

It's not liking that for some reason I think...I can't know for certain ... sorry.

@ghost
Copy link
Author

ghost commented Apr 9, 2018

img_0004

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants