/** * Form view. * * @author OMS Development Team * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @since 1.0.0 */ (function (jsOMS) { "use strict"; /** @namespace jsOMS.Spreadsheet */ jsOMS.Autoloader.defineNamespace('jsOMS.Spreadsheet'); jsOMS.Spreadsheet.Spreadsheet = function(id, options) { this.title = ''; this.sheets = []; this.columns = true; this.rows = true; }; }(window.jsOMS = window.jsOMS || {}));