We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b6f35 commit be17953Copy full SHA for be17953
haxe/ui/backend/ScreenBase.hx
@@ -54,7 +54,14 @@ class ScreenBase {
54
return HtmlUtils.dpi;
55
}
56
57
- public var title:String;
+ public var title(get,set):String;
58
+ private inline function get_title():String {
59
+ return js.Browser.document.title;
60
+ }
61
+ private inline function set_title(s:String):String {
62
+ js.Browser.document.title = s;
63
+ return s;
64
65
66
private var __topLevelComponents:Array<Component> = [];
67
public function addComponent(component:Component) {
0 commit comments