question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

I made a main.html file and app.py file. Chrome is opening but that window is empty. My main.html is that:

<html><head>
	<title>My title</title>
	<script type="text/javascript" src="/eel.js"></script>
</head>
<body>
        <h1>Hello!</h1>
</body>
</html>

But when I run the app.py, the html of opened window is always that:

<html><head>
	<title>App</title>
	<script type="text/javascript" src="/eel.js"></script>
</head>
<body>
</body>
</html>

Thanks for helps.

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:7

github_iconTop GitHub Comments

1reaction
samuelhwilliamscommented, Oct 21, 2019

I’m going to include the “default to caching off” in a v0.11.0 release. While this is technically a breaking change, given that we’re below v1.0.0 and we think it’s generally useful for most users, I think it’s acceptable.

I’ll close this issue off when I’ve released v0.11.0

0reactions
samuelhwilliamscommented, Oct 16, 2019

@ChrisKnott we’ve only released pre-release v1.0.0-a1 actually - so people installing via pip install eel probably won’t be getting it. Might be time to bump it up to a full v1.0.0 so that everyone gets it by default.

Read more comments on GitHub >

github_iconTop Results From Across the Web

How do I check if an HTML element is empty using jQuery?
18 Answers 18 · 1- Using html : if (!$.trim($('p#element').html())) { // paragraph with id="element" is empty, your code goes here } ·...
Read more >
How to check an HTML element is empty using jQuery
Method 1: Using the “:empty” selector: The element to be checked using is() method. The is() method is used to check if one...
Read more >
How do I check if an HTML element is ... - Net-Informations.Com
jQuery :empty Selector - You can use jQuery is() and :empty Selector together to check whether elements is empty or not before performing...
Read more >
HTML Elements - W3Schools
Note: Some HTML elements have no content (like the <br> element). These elements are called empty elements. Empty elements do not have an...
Read more >
empty - CSS: Cascading Style Sheets - MDN Web Docs
The :empty CSS pseudo-class represents any element that has no children. Children can be either element nodes or text (including whitespace) ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found