Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f0eaca7
Use current handsontable
micgro42 Aug 10, 2015
ef151cf
Adjust type of col() and row() to col and row
micgro42 Aug 10, 2015
44ac082
Iterate over all cells in selection + tests
micgro42 Aug 11, 2015
8d681a1
Use updated less/css file
micgro42 Aug 11, 2015
9ea4aa4
Do not display strange height-increasing divs
micgro42 Aug 11, 2015
83e8505
Moving of columns and rows is now core functionality
micgro42 Aug 11, 2015
c84cbe5
Do not hide, but only unset strang divs height
micgro42 Aug 11, 2015
6dfa5be
Use built-in functions instead of our workaround
micgro42 Aug 12, 2015
d615323
Write moved rows/cols directly to data array
micgro42 Aug 12, 2015
ff7f02a
Add merged Cells to the editor
micgro42 Aug 12, 2015
a258565
Retranslate merged Cells back into dokuwiki syntax
micgro42 Aug 12, 2015
9106423
Remove old col/rowspan entries from lang and context menu
micgro42 Aug 12, 2015
8d95a3d
Do not create global objects
micgro42 Aug 12, 2015
99c7cc5
Add unittests for moveRow and moveCol
micgro42 Aug 12, 2015
8821914
Use jQuery to set the appropriate id
micgro42 Aug 12, 2015
d7917d3
Version compiled from current master with grunt
micgro42 Aug 12, 2015
8c37e9d
Be more precise on the selectors
micgro42 Aug 12, 2015
e3b1db0
Disabled col/rows with merged cells for moving
micgro42 Aug 13, 2015
c5dfef9
Keep merged cells aligned with their content
micgro42 Aug 13, 2015
b905fc5
Show different strings/icon in contextmenu for merge/unmerge
micgro42 Aug 13, 2015
18e7efa
Show icons for merg/split in context menu
micgro42 Aug 17, 2015
05b6b29
Split a merge when its top-left cell is removed
micgro42 Aug 17, 2015
490ed22
Add frontend tests to travis + run with grunt
micgro42 Aug 17, 2015
267f91b
Add padding for filler-pixel in last row
micgro42 Aug 17, 2015
d91ba83
Delete unused files and add deleted.files file
micgro42 Aug 17, 2015
78ff256
Translation adjustment
micgro42 Aug 17, 2015
e5c131b
Adjust git url for our handsontable fork
micgro42 Aug 17, 2015
48d9c1d
Hide weird second scollbar on large tables
micgro42 Aug 17, 2015
ecf662d
Update handsontable to create now columns with autofill
micgro42 Aug 17, 2015
a9ab312
Input buttons were changed to buttons in Detritus
micgro42 Aug 17, 2015
9cf27e0
Show/run tests in browser without node modules
micgro42 Aug 17, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Show/run tests in browser without node modules
  • Loading branch information
micgro42 committed Aug 17, 2015
commit 9cf27e0163286d1bdd929f25ce961326bd408fe5
2 changes: 2 additions & 0 deletions _jstest/qunit.test.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
<title>edittable qunit tests</title>
<link rel="stylesheet" href="//code.jquery.com/qunit/qunit-1.18.0.css">
<script src="../node_modules/jquery/dist/jquery.js"></script>
<script>window.jQuery || document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"><\/script>')</script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="../node_modules/qunitjs/qunit/qunit.js"></script>
<script>window.QUnit || document.write('<script src="//code.jquery.com/qunit/qunit-1.18.0.js"><\/script>')</script>
<script src="../script/contextmenu.js"></script>
<script src="cellArray.tests.js"></script>
<script src="../script/editor.js"></script>
Expand Down