spreadsheet
typeScript/javascript spreadsheet parser, with formulas.
git clone https://git.vogt.world/spreadsheet.git
Log | Files | README.md
← Commit log
commit
message
Minor renaming
author
Ben Vogt <[email protected]>
date
2016-12-27 17:50:01
stats
5 file(s) changed, 7 insertions(+), 11 deletions(-)
files
mine.html
rule.html
ts.html
ts/sheet.js
ts/sheet.ts
 1diff --git a/mine.html b/mine.html
 2index f0be809..3fab627 100644
 3--- a/mine.html
 4+++ b/mine.html
 5@@ -4,8 +4,7 @@
 6   <meta charset='utf-8'>
 7   <title>Mine</title>
 8 
 9-  <!-- Latest compiled and minified CSS -->
10-  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
11+  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
12 
13   <script src="lib/lodash/lodash.js"></script>
14   <script src="lib/underscore.string/underscore.string.js"></script>
15diff --git a/rule.html b/rule.html
16index acb3fd2..0ad587f 100644
17--- a/rule.html
18+++ b/rule.html
19@@ -4,8 +4,7 @@
20   <meta charset='utf-8'>
21   <title>RuleJS</title>
22 
23-  <!-- Latest compiled and minified CSS -->
24-  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
25+  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
26 
27   <script src="lib/lodash/lodash.js"></script>
28   <script src="lib/underscore.string/underscore.string.js"></script>
29diff --git a/ts.html b/ts.html
30index d8b18ab..dcded9d 100644
31--- a/ts.html
32+++ b/ts.html
33@@ -4,9 +4,6 @@
34   <meta charset='utf-8'>
35   <title>TS</title>
36 
37-  <!-- Latest compiled and minified CSS -->
38-  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
39-
40   <script src="lib/lodash/lodash.js"></script>
41   <script src="lib/underscore.string/underscore.string.js"></script>
42   <script src="lib/moment/moment.js"></script>
43@@ -22,8 +19,8 @@
44 <body>
45 look at the console.
46 <script>
47-  var m = new mine('mine');
48-  m.init();
49+  var sheet = new Sheet();
50+  sheet.init();
51 </script>
52 </body>
53 </html>
54diff --git a/ts/sheet.js b/ts/sheet.js
55index a3a912d..1c26f79 100644
56--- a/ts/sheet.js
57+++ b/ts/sheet.js
58@@ -58,7 +58,7 @@ var Cell = (function () {
59     };
60     return Cell;
61 }());
62-var mine = (function () {
63+var Sheet = (function () {
64     'use strict';
65     var instance = this;
66     // Will be overwritten, but needs to be initialized, and have some functions for tsc compilation.
67diff --git a/ts/sheet.ts b/ts/sheet.ts
68index ceb76e2..5228401 100644
69--- a/ts/sheet.ts
70+++ b/ts/sheet.ts
71@@ -103,7 +103,7 @@ class Cell {
72 
73 
74 
75-var mine = (function () {
76+var Sheet = (function () {
77   'use strict';
78   var instance = this;
79