Skip to content

Commit

Permalink
prepares release
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Sep 8, 2022
1 parent 87ced8a commit 9687caa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion justpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""JustPy is an object-oriented, component based, high-level Python Web Framework that requires no front-end programming"""
from .justpy import *

__version__ = "0.7.0"
__version__ = "0.7.2"
10 changes: 5 additions & 5 deletions justpy/templates/js/justpy_core.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ class JustpyCore {

// create a JustpyCore instance
constructor(window,title,page_ready,result_ready,reload_interval_ms,debug) {
this.window=window
this.window=window;
this.setTitle(title);
this.page_ready=page_ready
this.result_ready=result_ready
this.reload_interval_ms=reload_interval_ms
this.debug=debug
this.page_ready=page_ready;
this.result_ready=result_ready;
this.reload_interval_ms=reload_interval_ms;
this.debug=debug;
}

// set the title
Expand Down

0 comments on commit 9687caa

Please sign in to comment.