Compare commits

...

2 Commits

Author SHA1 Message Date
Lynne Megido cb10d8a7a7
run drone build in parallel
All checks were successful
continuous-integration/drone/push Build is passing
2020-03-01 16:53:16 +10:00
Lynne Megido ce4cf010e5
actually add the JS file 0u0; 2020-03-01 16:52:39 +10:00
2 changed files with 8 additions and 1 deletions

View File

@ -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
View File

@ -0,0 +1,7 @@
function dgel(id) {
return document.getElementById(id);
}
function subrecipe_toggle(id) {
dgel(id).classList.toggle("open");
}