Spreadsheet skeleton

This commit is contained in:
Dennis Eichhorn 2016-08-02 09:16:36 +02:00
parent 58c96cfeb9
commit 10886f0178
4 changed files with 23 additions and 0 deletions

View File

0
Spreadsheet/Functions.js Normal file
View File

0
Spreadsheet/Sheet.js Normal file
View File

View File

@ -0,0 +1,23 @@
/**
* Form view.
*
* @author OMS Development Team <dev@oms.com>
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @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 || {}));