├── .gitignore ├── Changes.txt ├── Gulpfile.js ├── LEGAL.txt ├── LICENSE.txt ├── README.md ├── css └── socialcalc.css ├── dist ├── SocialCalc.js └── socialcalc.css ├── images ├── sc_1x1.gif ├── sc_aligncenter.png ├── sc_alignleft.png ├── sc_alignright.png ├── sc_autosum.png ├── sc_bordersoff.png ├── sc_borderson.png ├── sc_copy.png ├── sc_cursorinsertleft.gif ├── sc_cursorinsertup.gif ├── sc_cut.png ├── sc_defaultcolor.gif ├── sc_delete.png ├── sc_deletecolumns.png ├── sc_deleterows.png ├── sc_divider1.png ├── sc_downsearch.png ├── sc_drag-handles.gif ├── sc_drag-handles.png ├── sc_endcap-h.gif ├── sc_endcap-v.gif ├── sc_filldown.png ├── sc_fillright.png ├── sc_formatpaintbrush.png ├── sc_hidecol.png ├── sc_hiderow.png ├── sc_insertcolumns.png ├── sc_insertformula.png ├── sc_inserthyperlink.png ├── sc_insertrows.png ├── sc_less-hd.gif ├── sc_less-hh.gif ├── sc_less-hn.gif ├── sc_less-vh.gif ├── sc_less-vn.gif ├── sc_listbox.png ├── sc_lock.png ├── sc_lockbg.gif ├── sc_logo.gif ├── sc_main-h.gif ├── sc_main-v.gif ├── sc_mergecells.png ├── sc_more-hd.gif ├── sc_more-hh.gif ├── sc_more-hn.gif ├── sc_more-vd.gif ├── sc_more-vh.gif ├── sc_more-vn.gif ├── sc_movefrom.gif ├── sc_movefromoff.gif ├── sc_moveinsert.gif ├── sc_moveinsertoff.gif ├── sc_movepaste.gif ├── sc_movepasteoff.gif ├── sc_paneslider-h.gif ├── sc_paneslider-v.gif ├── sc_paste.png ├── sc_range2.gif ├── sc_recalc.png ├── sc_redo.png ├── sc_scrollarea-h.gif ├── sc_scrollarea-v.gif ├── sc_swapcolors.png ├── sc_thumb-hd.gif ├── sc_thumb-hh.gif ├── sc_thumb-hn.gif ├── sc_thumb-vd.gif ├── sc_thumb-vh.gif ├── sc_thumb-vn.gif ├── sc_trackingline-h.gif ├── sc_trackingline-v.gif ├── sc_undo.png ├── sc_unhidebottom.gif ├── sc_unhideleft.gif ├── sc_unhideright.gif ├── sc_unhidetop.gif ├── sc_unlock.png └── sc_upsearch.png ├── js ├── formatnumber2.js ├── formula1.js ├── module-wrapper-bottom.js ├── module-wrapper-top.js ├── socialcalc-3.js ├── socialcalcconstants.js ├── socialcalcpopup.js ├── socialcalcspreadsheetcontrol.js ├── socialcalctableeditor.js └── socialcalcviewer.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /package-lock.json 3 | -------------------------------------------------------------------------------- /Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/Changes.txt -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /LEGAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/LEGAL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/README.md -------------------------------------------------------------------------------- /css/socialcalc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/css/socialcalc.css -------------------------------------------------------------------------------- /dist/SocialCalc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/dist/SocialCalc.js -------------------------------------------------------------------------------- /dist/socialcalc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/dist/socialcalc.css -------------------------------------------------------------------------------- /images/sc_1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_1x1.gif -------------------------------------------------------------------------------- /images/sc_aligncenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_aligncenter.png -------------------------------------------------------------------------------- /images/sc_alignleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_alignleft.png -------------------------------------------------------------------------------- /images/sc_alignright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_alignright.png -------------------------------------------------------------------------------- /images/sc_autosum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_autosum.png -------------------------------------------------------------------------------- /images/sc_bordersoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_bordersoff.png -------------------------------------------------------------------------------- /images/sc_borderson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_borderson.png -------------------------------------------------------------------------------- /images/sc_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_copy.png -------------------------------------------------------------------------------- /images/sc_cursorinsertleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_cursorinsertleft.gif -------------------------------------------------------------------------------- /images/sc_cursorinsertup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_cursorinsertup.gif -------------------------------------------------------------------------------- /images/sc_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_cut.png -------------------------------------------------------------------------------- /images/sc_defaultcolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_defaultcolor.gif -------------------------------------------------------------------------------- /images/sc_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_delete.png -------------------------------------------------------------------------------- /images/sc_deletecolumns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_deletecolumns.png -------------------------------------------------------------------------------- /images/sc_deleterows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_deleterows.png -------------------------------------------------------------------------------- /images/sc_divider1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_divider1.png -------------------------------------------------------------------------------- /images/sc_downsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_downsearch.png -------------------------------------------------------------------------------- /images/sc_drag-handles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_drag-handles.gif -------------------------------------------------------------------------------- /images/sc_drag-handles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_drag-handles.png -------------------------------------------------------------------------------- /images/sc_endcap-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_endcap-h.gif -------------------------------------------------------------------------------- /images/sc_endcap-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_endcap-v.gif -------------------------------------------------------------------------------- /images/sc_filldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_filldown.png -------------------------------------------------------------------------------- /images/sc_fillright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_fillright.png -------------------------------------------------------------------------------- /images/sc_formatpaintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_formatpaintbrush.png -------------------------------------------------------------------------------- /images/sc_hidecol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_hidecol.png -------------------------------------------------------------------------------- /images/sc_hiderow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_hiderow.png -------------------------------------------------------------------------------- /images/sc_insertcolumns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_insertcolumns.png -------------------------------------------------------------------------------- /images/sc_insertformula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_insertformula.png -------------------------------------------------------------------------------- /images/sc_inserthyperlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_inserthyperlink.png -------------------------------------------------------------------------------- /images/sc_insertrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_insertrows.png -------------------------------------------------------------------------------- /images/sc_less-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_less-hd.gif -------------------------------------------------------------------------------- /images/sc_less-hh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_less-hh.gif -------------------------------------------------------------------------------- /images/sc_less-hn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_less-hn.gif -------------------------------------------------------------------------------- /images/sc_less-vh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_less-vh.gif -------------------------------------------------------------------------------- /images/sc_less-vn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_less-vn.gif -------------------------------------------------------------------------------- /images/sc_listbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_listbox.png -------------------------------------------------------------------------------- /images/sc_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_lock.png -------------------------------------------------------------------------------- /images/sc_lockbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_lockbg.gif -------------------------------------------------------------------------------- /images/sc_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_logo.gif -------------------------------------------------------------------------------- /images/sc_main-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_main-h.gif -------------------------------------------------------------------------------- /images/sc_main-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_main-v.gif -------------------------------------------------------------------------------- /images/sc_mergecells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_mergecells.png -------------------------------------------------------------------------------- /images/sc_more-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_more-hd.gif -------------------------------------------------------------------------------- /images/sc_more-hh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_more-hh.gif -------------------------------------------------------------------------------- /images/sc_more-hn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_more-hn.gif -------------------------------------------------------------------------------- /images/sc_more-vd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_more-vd.gif -------------------------------------------------------------------------------- /images/sc_more-vh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_more-vh.gif -------------------------------------------------------------------------------- /images/sc_more-vn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_more-vn.gif -------------------------------------------------------------------------------- /images/sc_movefrom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_movefrom.gif -------------------------------------------------------------------------------- /images/sc_movefromoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_movefromoff.gif -------------------------------------------------------------------------------- /images/sc_moveinsert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_moveinsert.gif -------------------------------------------------------------------------------- /images/sc_moveinsertoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_moveinsertoff.gif -------------------------------------------------------------------------------- /images/sc_movepaste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_movepaste.gif -------------------------------------------------------------------------------- /images/sc_movepasteoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_movepasteoff.gif -------------------------------------------------------------------------------- /images/sc_paneslider-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_paneslider-h.gif -------------------------------------------------------------------------------- /images/sc_paneslider-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_paneslider-v.gif -------------------------------------------------------------------------------- /images/sc_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_paste.png -------------------------------------------------------------------------------- /images/sc_range2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_range2.gif -------------------------------------------------------------------------------- /images/sc_recalc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_recalc.png -------------------------------------------------------------------------------- /images/sc_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_redo.png -------------------------------------------------------------------------------- /images/sc_scrollarea-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_scrollarea-h.gif -------------------------------------------------------------------------------- /images/sc_scrollarea-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_scrollarea-v.gif -------------------------------------------------------------------------------- /images/sc_swapcolors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_swapcolors.png -------------------------------------------------------------------------------- /images/sc_thumb-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_thumb-hd.gif -------------------------------------------------------------------------------- /images/sc_thumb-hh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_thumb-hh.gif -------------------------------------------------------------------------------- /images/sc_thumb-hn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_thumb-hn.gif -------------------------------------------------------------------------------- /images/sc_thumb-vd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_thumb-vd.gif -------------------------------------------------------------------------------- /images/sc_thumb-vh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_thumb-vh.gif -------------------------------------------------------------------------------- /images/sc_thumb-vn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_thumb-vn.gif -------------------------------------------------------------------------------- /images/sc_trackingline-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_trackingline-h.gif -------------------------------------------------------------------------------- /images/sc_trackingline-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_trackingline-v.gif -------------------------------------------------------------------------------- /images/sc_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_undo.png -------------------------------------------------------------------------------- /images/sc_unhidebottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_unhidebottom.gif -------------------------------------------------------------------------------- /images/sc_unhideleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_unhideleft.gif -------------------------------------------------------------------------------- /images/sc_unhideright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_unhideright.gif -------------------------------------------------------------------------------- /images/sc_unhidetop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_unhidetop.gif -------------------------------------------------------------------------------- /images/sc_unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_unlock.png -------------------------------------------------------------------------------- /images/sc_upsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/images/sc_upsearch.png -------------------------------------------------------------------------------- /js/formatnumber2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/formatnumber2.js -------------------------------------------------------------------------------- /js/formula1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/formula1.js -------------------------------------------------------------------------------- /js/module-wrapper-bottom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/module-wrapper-bottom.js -------------------------------------------------------------------------------- /js/module-wrapper-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/module-wrapper-top.js -------------------------------------------------------------------------------- /js/socialcalc-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/socialcalc-3.js -------------------------------------------------------------------------------- /js/socialcalcconstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/socialcalcconstants.js -------------------------------------------------------------------------------- /js/socialcalcpopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/socialcalcpopup.js -------------------------------------------------------------------------------- /js/socialcalcspreadsheetcontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/socialcalcspreadsheetcontrol.js -------------------------------------------------------------------------------- /js/socialcalctableeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/socialcalctableeditor.js -------------------------------------------------------------------------------- /js/socialcalcviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/js/socialcalcviewer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelklehr/socialcalc/HEAD/package.json --------------------------------------------------------------------------------