Lines Matching refs:instructions
279 var instructions = document.getElementById('instructions');
281 instructions.style.visibility = 'visible';
283 instructions.style.visibility = 'hidden';
398 var instructions = document.createElement('div');
399 instructions.id = 'instructions';
400 instructions.className = 'keyboard-overlay-instructions';
401 instructions.style.left = ((BASE_INSTRUCTIONS.left - BASE_KEYBOARD.left) *
403 instructions.style.top = ((BASE_INSTRUCTIONS.top - BASE_KEYBOARD.top) *
405 instructions.style.width = (width * BASE_INSTRUCTIONS.width /
407 instructions.style.height = (height * BASE_INSTRUCTIONS.height /
414 instructions.appendChild(instructionsText);
419 instructions.appendChild(instructionsHideText);
420 keyboard.appendChild(instructions);