Skip to content

HandsomeOne/JavaScript24

Repository files navigation

#JavaScript24

A minimal arithmetical game with JavaScript syntax.

demo

If embedded in another page, use the following code to sync iframe's height.

onmessage = function (e) {
  if (e.origin.split('//')[1] === 'handsomeone.github.io') {
    document.querySelector('iframe').height = e.data.height
  }
}