GithubHelp home page GithubHelp logo

Comments (5)

Neener54 avatar Neener54 commented on July 28, 2024

I believe this has something to do with the creation of the iframe. Not 100% sure though.

from wysihtml5.

tiff avatar tiff commented on July 28, 2024

Hey @azolotov,

thanks for your investigation.

wysihtml5 creates an empty iframe (with no src set) which acts as the editor's sandbox.
This in fact seems to load the browser's empty default page: about:blank
My tests also show me that this is causing the loading bar to flicker shortly.

Right now I have no idea how to avoid that behavior but I'm open to suggestions...

from wysihtml5.

azolotov avatar azolotov commented on July 28, 2024

Is there any way to catch those requests before they are executed and just kill them?

from wysihtml5.

tiff avatar tiff commented on July 28, 2024

This seems to fix the problem in Firefox but not Chrome:

var iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.contentWindow.stop();

Can you verify?

However it seems that the loading spinner is not only triggered by the iframe but also by the operation that creates a dom in it.

sandbox.js #161 (https://github.com/xing/wysihtml5/blob/master/src/dom/sandbox.js#L161)

      // Create the basic dom tree including proper DOCTYPE and charset
      iframeDocument.open("text/html", "replace");
      iframeDocument.write(sandboxHtml);
      iframeDocument.close();

from wysihtml5.

tiff avatar tiff commented on July 28, 2024

Closing this as "won't fix" for now as I don't see any way to bypass the browser loading spinner.

from wysihtml5.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.