Skip to content

Commit cd00f9c

Browse files
committed
Update plugin statusbar
1 parent db5d3f1 commit cd00f9c

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

plugins/JSSV8/dist/statusbar.min.js

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/JSSV8/src/statusbar/index.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Plugin statusbar for JSpreadsheet Pro
33
*
4-
* @version 2.3.2
4+
* @version 2.3.3
55
* @author Guillaume Bonnaire <contact@gbonnaire.fr>
66
* @website https://repo.gbonnaire.fr
77
* @summary Add status bar on bottom of JSpreadsheet
@@ -30,6 +30,7 @@
3030
*
3131
* @description Status bar is a plugin for add a status bar on bottom of the sheet like Excel. On this status bar you can add new row with button, and show information on selection (Range selected, Formulas, etc.)
3232
* Release notes
33+
* Version 2.3.3: Manage after change cell content
3334
* Version 2.3.2: Add property closeInsertionOnly + auto scroll
3435
* Version 2.3.1: Add property quantity
3536
* Version 2.3.0: Add possibility to insert after/before row/column
@@ -113,7 +114,9 @@
113114
const x2 = arguments[4];
114115
const y2 = arguments[5];
115116

116-
RangeSelection = [x1,y1,x2,y2];
117+
RangeSelection = [x1, y1, x2, y2];
118+
plugin.generateInformation();
119+
} else if(event == "onafterchanges") {
117120
plugin.generateInformation();
118121
} else if(event == "onblur") {
119122
const statusBarInformationElement = getStatusBarInformationElement();

plugins/JSSV8/src/statusbar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
"jspreadsheet": ">9.0.0"
2929
},
3030
"main": "index.js",
31-
"version": "2.3.2"
31+
"version": "2.3.3"
3232
}

plugins/JSSV8/src/statusbar/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Plugin CSS status bar for Jspreadsheet Pro
33
*
4-
* @version 2.3.2
4+
* @version 2.3.3
55
* @author Guillaume Bonnaire <contact@gbonnaire.fr>
66
* @website https://repo.gbonnaire.fr
77
*

0 commit comments

Comments
 (0)