We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc7f956 commit 4ae20b0Copy full SHA for 4ae20b0
src/js/control.js
@@ -255,7 +255,7 @@ var control = (function(){
255
path: "layout.title",
256
type: "text",
257
func: function(){
258
-title.render();
+title.render.name();
259
}
260
},{
261
element: helper.e(".control-layout-scrollpastend"),
src/js/title.js
@@ -1,11 +1,13 @@
1
vartitle=(function(){
2
3
-varrender=function(){
+varrender={};
4
+
5
+render.name=function(){
6
helper.e("title").textContent=state.get().layout.title;
7
};
8
9
varinit=function(){
-render();
10
+render.name();
11
12
13
// exposed methods
0 commit comments