@kizmann/pico-js 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pico-js.js +1 -1
- package/dist/pico-js.js.map +1 -1
- package/package.json +1 -1
- package/src/element/example.js +1 -1
- package/src/library/route.js +1 -1
- package/src/utility/dom.js +2 -2
package/package.json
CHANGED
package/src/element/example.js
CHANGED
package/src/library/route.js
CHANGED
package/src/utility/dom.js
CHANGED
@@ -110,8 +110,8 @@ export class Dom
|
|
110
110
|
|
111
111
|
static title(text = null, glue = ' - ')
|
112
112
|
{
|
113
|
-
document.title =
|
114
|
-
text + glue +
|
113
|
+
document.title = global.baseTitle !== undefined ?
|
114
|
+
text + glue + global.baseTitle : text;
|
115
115
|
|
116
116
|
return this;
|
117
117
|
}
|