Skip to content
Open
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
20 changes: 15 additions & 5 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"bootstrap": "4.3.1",
"jquery": "3.4.1",
"axios": "^0.19.1",
"axios": "^0.21.2",
"jquery.easing": "^1.4.1"
},
"devDependencies": {
Expand Down
3 changes: 3 additions & 0 deletions views/devices/devices.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
<div class="col-lg-2 col-md-3 col-sm-6">
<a href="#devices/android-11" id="android-11" class="btn btn-light">Android R (11)</a>
</div>
<div class="col-lg-2 col-md-3 col-sm-6">
<a href="#devices/android-12.0" id="android-12.0" class="btn btn-light">Android S (12)</a>
</div>
</div>
<div class="row justify-content-center" id="device-list">

Expand Down
2 changes: 1 addition & 1 deletion views/devices/devices.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { siteURL, container, showSpinner } from '../../js/const.js'
var devicesList = []
const gerritURL = 'https://gerrit.omnirom.org'
const rawURL = 'https://raw.githubusercontent.com/omnirom/'
var currentVersion = 'android-11'
var currentVersion = 'android-12.0'

class DevicesView {

Expand Down