Compare commits
2 commits
5f19345653
...
cb10d8a7a7
Author | SHA1 | Date | |
---|---|---|---|
cb10d8a7a7 | |||
ce4cf010e5 |
2 changed files with 8 additions and 1 deletions
|
@ -3,6 +3,6 @@ pipeline:
|
|||
image: ruby
|
||||
commands:
|
||||
- gem install bundler
|
||||
- bundle install
|
||||
- bundle install --jobs=4
|
||||
- bundle exec jekyll build
|
||||
- bundle exec htmlproofer ./_site --disable-external
|
||||
|
|
7
script.js
Normal file
7
script.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
function dgel(id) {
|
||||
return document.getElementById(id);
|
||||
}
|
||||
|
||||
function subrecipe_toggle(id) {
|
||||
dgel(id).classList.toggle("open");
|
||||
}
|
Loading…
Reference in a new issue