Home | History | Annotate | Download | only in keyboard

Lines Matching refs:row

81    * Set the position, a.k.a. row, of this key.
421 * @param {number} position The position of the row (0-3).
422 * @param {Array.<BaseKey>} keys The keys in the row.
425 function Row(position, keys) {
432 Row.prototype = {
434 * Get the total aspect ratio of the row.
446 * Create the DOM elements for the row.
447 * @return {Element} The top-level DOM Element for the row.
451 this.element_.className = 'row';
492 * Resizes all keys in the row according to the global size.
505 * NOTE: every row below should have an aspect of 12.6.
556 // since this row has only 7 keys (as opposed to 12), the truncation
567 * @type {Array.<Row>}
572 * Calculate the height of the row based on the size of the page.
573 * @return {number} The height of each row, in pixels.
656 allRows.push(new Row(i, KEYS[i]));