earthtrek-core
Version:
Global Nominee NASA Space Apps Challenge 2017 Buenos Aires - Global Finalist (Best Use of Data) NASA Space Apps Challenge 2017 - 1D, 2D, 3D, Go! Challenge
20 lines (18 loc) • 569 B
JavaScript
/**
* @class earthTrekToolbar
* @module EarthTrek
* @author SATrek
* @author Alejandro Sanchez <alejandro.sanchez.trek@gmail.com>
* @description EarthTrek - NASA Space Apps 2017 - 7 MAY 2017.
*/
var earthTrekToolbar = earthTrekToolbar || {};
earthTrekToolbar.create = function(id, callback) {
var toolbar = document.createElement('div');
$(toolbar).attr('id', id);
$(toolbar).addClass('earthtrek-toolbar');
if (callback !== undefined) {
callback(toolbar);
}
return toolbar;
}
module.exports = earthTrekToolbar;