mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-30 10:18:41 +00:00
Spreadsheet skeleton
This commit is contained in:
parent
58c96cfeb9
commit
10886f0178
0
Spreadsheet/Formatting.js
Normal file
0
Spreadsheet/Formatting.js
Normal file
0
Spreadsheet/Functions.js
Normal file
0
Spreadsheet/Functions.js
Normal file
0
Spreadsheet/Sheet.js
Normal file
0
Spreadsheet/Sheet.js
Normal file
23
Spreadsheet/Spreadsheet.js
Normal file
23
Spreadsheet/Spreadsheet.js
Normal 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 || {}));
|
||||
Loading…
Reference in New Issue
Block a user