diff --git a/README.md b/README.md
index d0d31760..0692cc22 100644
--- a/README.md
+++ b/README.md
@@ -21,8 +21,8 @@ It is very easy to use jExcel, first you should make you have include the jquery
```html
-
-
+
+
```
You should initiate your table based on a div container, such as:
diff --git a/examples/autocomplete.html b/examples/autocomplete.html
index b6f97b4a..d001b400 100644
--- a/examples/autocomplete.html
+++ b/examples/autocomplete.html
@@ -31,10 +31,10 @@
-
+
@@ -90,8 +90,12 @@
+
+
diff --git a/examples/creating-a-table-from-an-external-csv-file.html b/examples/creating-a-table-from-an-external-csv-file.html
index e769524b..a8947a04 100644
--- a/examples/creating-a-table-from-an-external-csv-file.html
+++ b/examples/creating-a-table-from-an-external-csv-file.html
@@ -97,6 +97,7 @@
csv:'http://cdn.bossanova.uk/demo/demo1.csv',
csvHeaders:true,
colWidths: [70, 200, 300],
+ tableOverflow:true,
});
$('#download').on('click', function () {
diff --git a/examples/including-formulas-on-your-spreadsheet.html b/examples/including-formulas-on-your-spreadsheet.html
index 72d13754..12355dd2 100644
--- a/examples/including-formulas-on-your-spreadsheet.html
+++ b/examples/including-formulas-on-your-spreadsheet.html
@@ -91,20 +91,27 @@
+
+
+
diff --git a/examples/multiple-spreadsheets-in-the-same-page.html b/examples/multiple-spreadsheets-in-the-same-page.html
index a398bb08..4150d836 100644
--- a/examples/multiple-spreadsheets-in-the-same-page.html
+++ b/examples/multiple-spreadsheets-in-the-same-page.html
@@ -92,10 +92,16 @@
var data2 = $.fn.jexcel('helper', { action:'createEmptyData', cols:8, rows:4 });
$('#my1').jexcel({
- data:data1
+ data:data1,
+ contextMenu:function() {
+ console.log(1);
+ }
});
$('#my2').jexcel({
- data:data2
+ data:data2,
+ contextMenu:function() {
+ console.log(2);
+ }
});
diff --git a/jexcel.jquery.json b/jexcel.jquery.json
index 0d3a1429..c05148a5 100644
--- a/jexcel.jquery.json
+++ b/jexcel.jquery.json
@@ -14,7 +14,7 @@
"data-grid",
"data-spreadsheet"
],
- "version": "1.5.4",
+ "version": "1.5.5",
"author": {
"name": "Paul Hodel",
"url": "https://www.linkedin.com/in/paulhodel"
diff --git a/package.json b/package.json
index 76785b6e..638949da 100644
--- a/package.json
+++ b/package.json
@@ -35,7 +35,7 @@
"data-grid",
"data-spreadsheet"
],
- "version": "1.5.4",
+ "version": "1.5.7",
"bugs": "https://github.com/paulhodel/jexcel/issues",
"homepage": "https://github.com/paulhodel/jexcel",
"docs": "https://bossanova.uk/jexcel",