Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Bobril 20.6.4 without dynamically creating css #1631

Merged
merged 1 commit into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frameworks/keyed/bobril/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bobril v20.6.0</title>
<title>Bobril v20.6.4</title>
<link rel="stylesheet" href="dist/a.css">
</head>

Expand Down
8 changes: 4 additions & 4 deletions frameworks/keyed/bobril/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions frameworks/keyed/bobril/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"main": "src/app.js",
"js-framework-benchmark": {
"frameworkVersionFromPackage": "bobril",
"frameworkHomeURL": "https://bobril.com/",
"issues": [1139]
"frameworkHomeURL": "https://bobril.com/"
},
"scripts": {
"dev": "bb",
Expand All @@ -27,6 +26,6 @@
"bobril-build": "*"
},
"dependencies": {
"bobril": "20.6.0"
"bobril": "20.6.4"
}
}
2 changes: 1 addition & 1 deletion frameworks/keyed/bobril/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const Header = b.createComponent<IHeaderData>({
const d = ctx.data;
me.className = "jumbotron";
me.children = divWithClass("row", [
divWithClass("col-md-6", { tag: "h1", children: "Bobril v20.4.1" }),
divWithClass("col-md-6", { tag: "h1", children: "Bobril v20.6.4" }),
divWithClass("col-md-6", [
divWithClass(
"col-sm-6 smallpad",
Expand Down