Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save allurco/1ea3aeb5454afc03ffa3ce905cf2504f to your computer and use it in GitHub Desktop.
Save allurco/1ea3aeb5454afc03ffa3ce905cf2504f to your computer and use it in GitHub Desktop.
for (var i = 8; i < 17; i++) {
for (var z = 0; z < 4; z++) {
var sufix = i <= 9 ? '0' : '';
var min = z*15 == 0 ? '00': z*15;
alert.addInput({
type: 'radio',
label: sufix + i + ':' + min,
value: sufix + i + ':' + min + ':00-03:00',
checked: false
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment