Skip to content

Instantly share code, notes, and snippets.

@fuzzyfox
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fuzzyfox/92414dced82fc5ac86c3 to your computer and use it in GitHub Desktop.
Save fuzzyfox/92414dced82fc5ac86c3 to your computer and use it in GitHub Desktop.
Note: The quick fix to kitbuilder stubs.

The quick fix to kitbuilder stubs.

If you've been using http://kitbuilder.webmakerprototypes.org/ this week then there is an unfortunate bug in your kits that prevents some of the magic that webmaker-kits provides. The fix is simple though.

There is a <script> tag at the bottom of the kit that includes dist/js/main.min.js this needs to be changed to //stuff.webmaker.org/webmaker-kits/v2/js/main.min.js. Once that is done the magic takes place. Any tags on the kit will automagically display in the kit sidebar, and any checklists (see the code snippet bellow) will have checkboxes added for you!

Hope this helps improve the awesome factor on your kits!

– FuzzyFox


<div class="checklist">
  <p>This is my magical checklist of learning criteria:</p>
  <ul>
    <li>Criteria 1</li>
    <li>Criteria 2</li>
    <li>Criteria 3</li>
  </ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment