1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2026-03-16 15:45:45 +01:00
Commit graph

240 commits

Author SHA1 Message Date
Max Guglielmi
eeffb5b102 Removed element IDs from Loader and NoResults 2016-11-01 20:02:15 +11:00
Max Guglielmi
21305e2e62 Removed element IDs from Help and RowsCounter 2016-11-01 13:58:25 +11:00
Max Guglielmi
0b72eb55b0 Removed clear button container ID 2016-10-31 22:18:21 +11:00
Max Guglielmi
81d7a529ff Stored events list into const in Loader class 2016-10-27 13:33:42 +11:00
Max Guglielmi
a885c8caab Issue #313 Made locale.addFormat more defensive 2016-10-19 13:39:59 +11:00
Max Guglielmi
c5b4251039 Started dateType unit tests 2016-10-12 14:15:19 +11:00
Max Guglielmi
288af8b94e Addressed issue-309 2016-10-10 18:16:39 +11:00
Max Guglielmi
0f0ea9f2c4 Addressed PR feedback 2016-10-03 17:07:50 +11:00
Max Guglielmi
8b0bad54cc Fixed tests 2016-09-21 20:24:36 +10:00
Max Guglielmi
8fa502b2c4 Merged master in, added doco comments to dateType 2016-09-20 23:45:09 +10:00
Max Guglielmi
033a6516cf Initial commit 2016-09-20 13:40:38 +10:00
Max Guglielmi
bfe7293619 Re-refactored number type, continued 2016-09-19 20:35:34 +10:00
Max Guglielmi
a0707554bb Continued date 2016-09-17 19:15:25 +10:00
Max Guglielmi
d656ec90b0 Continued sort adapter 2016-09-15 23:39:43 +10:00
Max Guglielmi
c70aa29523 Continued date type 2016-09-14 18:03:45 +10:00
Max Guglielmi
a3c4f2158b Started date type 2016-09-14 00:30:18 +10:00
Max Guglielmi
2bed4c656a Finalised grid layout doco 2016-09-05 19:39:57 +10:00
Max Guglielmi
b20d3c1726 Initial commit 2016-09-03 13:19:55 +10:00
Max Guglielmi
6d32d6b5bd Moved clear button CSS class definition in ClearButton class 2016-09-01 18:07:24 +10:00
Archis Gore
fb2f201f29 URL Encode State Hash
You'll notice a mild asymmetry in how hash was
saved vs retrieved.

The retrieval was:
    JSON.parse(decodeUrlComponent(hash))

The save was:
    JSON.stringify(hash)

I modified it to:
    JSON.stringify(encodeUrlComponent(hash))

The reason I noticed this is in one of my apps,
I wanted to be able to copy/share a stateful filter URL.

However without the url encoding, those auto-parsers
of URLs were missing the full filter.

TESTING CONDUCTED:
1. Updated the Hash unit tests to both parse the
   encoded string, as well as generate it.

2. Ran "grunt", which has built/tested/jslinted
   the code.
2016-08-22 09:31:03 -07:00
Max Guglielmi
ed2f638bf2 Continued TableFilter 2016-08-14 14:14:52 +10:00
Max Guglielmi
d222f32674 Added comments to Storage for auto-generated documentation 2016-08-08 17:22:25 +10:00
Max Guglielmi
f43ccbfd50 Added comments to StatusBar for auto-generated documentation 2016-08-07 00:48:00 +10:00
Max Guglielmi
0b1256d571 Added comments to State for auto-generated documentation 2016-08-06 19:46:26 +10:00
Max Guglielmi
dc7ffd0321 Shortened RowsCounter properties names 2016-08-06 01:26:53 +10:00
Max Guglielmi
912433a032 Replaced var with let in RowsCounter 2016-08-06 00:53:32 +10:00
Max Guglielmi
b5dafdb173 Shortened PopupFilter properties names 2016-08-04 16:11:19 +10:00
Max Guglielmi
10f843430d Added comments to PopupFilter for auto-generated documentation 2016-08-04 15:40:02 +10:00
Max Guglielmi
01a34e082c Added comments to paging 2016-07-31 21:49:38 +10:00
Max Guglielmi
8c3597be4b Fixed no results container width for all browsers 2016-07-31 18:36:47 +10:00
Max Guglielmi
a962c04213 Fixed no results container width calculation 2016-07-30 16:45:58 +10:00
Max Guglielmi
d5ee78a0ff Aligned comment in Loader 2016-07-28 17:37:03 +10:00
Max Guglielmi
2f042e68dd Added comments for doco to HightlightKeyword and Loader 2016-07-27 17:21:30 +10:00
Max Guglielmi
fb56fab0c7 Added comments for autogenerated documentation (hash, help) 2016-07-23 18:34:19 +10:00
Archis Gore
e1e56daac0 Ran full grunt - updated build dates apparently. 2016-07-14 21:03:45 -07:00
Archis Gore
21d45aa6b6 Removed whitespaces 2016-07-14 20:19:15 -07:00
Archis Gore
8d7a7d77e6 Responded to feedback
1. Moved comment above a line to ensure that
   maximum line length of 80 characters is not breached.

2. Removed a mistaken ()=> which was left behind (that would have
   introduced the exact problem this change was intended to solve.)
2016-07-14 15:11:58 -07:00
Archis Gore
86ef087310 Store the Sync wrapper in a variable for clean removal.
This commit primarily fixes this issue:
https://github.com/koalyptus/TableFilter/issues/258

The fix here is to store a Sync call closed over "this" straight within
the object we're referencing. This having access to that object, we can
always retrieve the exact function reference/pointer/instance for removal
from handling events.
2016-07-13 20:06:58 -07:00
Max Guglielmi
3899aee53c Continued refactoring grid layout 2016-07-09 21:51:32 +10:00
Max Guglielmi
9594b9de50 Removed commented out code 2016-07-02 20:30:36 +10:00
Max Guglielmi
96237553bd Initial commit 2016-07-02 20:25:23 +10:00
Max Guglielmi
603de740a3 Fixed checklist option click event 2016-07-02 14:06:12 +10:00
Max Guglielmi
d031e31c0c Fixed on_after_filter callback fired twice from checklist filter 2016-06-25 21:19:58 +10:00
Max Guglielmi
6b8783b830 Initial commit 2016-06-24 17:48:04 +10:00
Max Guglielmi
c5fd43d150 More desensive coding in sort feature 2016-06-19 15:07:49 +10:00
Max Guglielmi
c4b3579e08 Added DOM changes unit tests 2016-06-13 19:17:13 +10:00
Max Guglielmi
7c2eb8ad4c Merged issue-197-misc-refactor in 2016-06-13 12:49:27 +10:00
Max Guglielmi
6070d9b52f Renamed GridLayout properties 2016-06-05 18:44:21 +10:00
Max Guglielmi
0172dea15f Added comments to checklist module for autogenerated docs 2016-06-05 01:41:44 +10:00
Max Guglielmi
0e403e6f09 Fixed empty-option and non-empty-option persistence 2016-06-05 00:28:55 +10:00