Sha256: a8b122614cd2ebb4e43422b41cab40e1ed4119b11807bbaa3fae899b62381629
Contents?: true
Size: 754 Bytes
Versions: 8
Compression:
Stored size: 754 Bytes
Contents
/*global define*/ define(['Core/DeveloperError'], function( DeveloperError) { "use strict"; /** * If element is a string, look up the element in the DOM by ID. Otherwise return element. * * @private * * @exception {DeveloperError} Element with id "id" does not exist in the document. */ var getElement = function(element) { if (typeof element === 'string') { var foundElement = document.getElementById(element); if (foundElement === null) { throw new DeveloperError('Element with id "' + element + '" does not exist in the document.'); } element = foundElement; } return element; }; return getElement; });
Version data entries
8 entries across 8 versions & 1 rubygems