Skip to content
This repository has been archived by the owner on Apr 2, 2019. It is now read-only.

Major performance boost. Fix #126 #444

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
cc05caf
Completely remove jQuery dependency from the core
wyuenho Apr 28, 2013
586661c
Minify js
wyuenho Apr 28, 2013
847abd3
Update API jsdoc
wyuenho Apr 28, 2013
199f8be
Update example in the main doc
wyuenho Apr 28, 2013
134cc7d
Fix Backgrid.View's remove and empty
wyuenho Apr 28, 2013
8ced580
Merge branch 'master' into perf
wyuenho May 10, 2013
22d0968
Update api and lib, fix SelectCell merge conflict
wyuenho May 10, 2013
84ce1e7
Merge branch 'master' of github.com:wyuenho/backgrid into perf
wyuenho May 10, 2013
36e86e2
More fixes failing tests down to 11
wyuenho May 11, 2013
d8149ee
Cleaned up code in SelectCell* and fixed Paginator broken merge
wyuenho May 12, 2013
d2e2c54
Fixed last errors under use$ mode
wyuenho May 12, 2013
17955c1
Merge branch 'master' into perf
wyuenho Jan 14, 2014
bb2da10
Remove console statements
wyuenho Jan 14, 2014
ca6a2b4
Merge branch 'master' into perf
wyuenho Jan 14, 2014
656e543
Merge branch 'master' into perf
wyuenho Jan 14, 2014
fb7d86f
Merge branch 'master' into perf
wyuenho Jan 14, 2014
ac243fd
More optimizations and IE8 compatibility
wyuenho Jan 15, 2014
b5be920
Fix matchesSelector to actually use the native implementation and lea…
wyuenho Jan 15, 2014
8ae5e83
Update lib
wyuenho Jan 15, 2014
28ca348
More compatible polyfills
wyuenho Jan 16, 2014
f247a3a
Slight code size and speed optimization
wyuenho Jan 16, 2014
67faa91
Update lib
wyuenho Jan 16, 2014
4504ede
Another 40% performance improvement
wyuenho Jan 16, 2014
95abb20
Merge branch 'master' into perf
wyuenho Jan 16, 2014
6af761e
Fix test for #429
wyuenho Jan 17, 2014
32f5c8c
Cross-platform addEventListener and removeEventListener
wyuenho Jan 17, 2014
8206c63
Merge branch 'master' into perf
wyuenho Jan 17, 2014
d472c95
Merge branch 'master' into perf
wyuenho Jan 17, 2014
63101f4
Remove accidental closure
wyuenho Jan 17, 2014
5a5032f
Merge branch 'master' into perf
wyuenho Jan 20, 2014
152f593
Merge branch 'master' into perf
wyuenho Jan 21, 2014
54e66e2
Merge branch 'master' into perf
wyuenho Jan 21, 2014
17eb525
Merge branch 'master' into perf
wyuenho Jan 24, 2014
abdc7b1
Remove IE8 support, Backgrid.mount and add slight optimization
wyuenho Jan 24, 2014
edcb531
Fix regression with moving the cursor to the end for right aligned ce…
wyuenho Jan 25, 2014
977da66
Merge branch 'master' into perf
wyuenho Jan 31, 2014
7e5bb2e
Update trim with es5-shim's master, bring back IE8 compat with matche…
wyuenho Feb 9, 2014
b8ce1a1
Misc fixes for IE8. Pending test fixes.
wyuenho Feb 14, 2014
5dbe376
Fix header cell for IE8
wyuenho Feb 14, 2014
8823479
Fix grid unknown runtime error on IE8 due to setting innerHTML to emt…
wyuenho Feb 14, 2014
63954a7
Remove options template because IE8
wyuenho Feb 15, 2014
b630067
Fix duplicated class attributes on IE8, add classList shim. Perf bran…
wyuenho Feb 15, 2014
2f696ca
Include classList polyfill for IE9 and fix placeholder test for IE9
wyuenho Feb 15, 2014
c56958c
Remove local reference to Backbone.$
wyuenho Feb 15, 2014
3d016b2
Compat warning in comment and slight optimization in Backgrid.View
wyuenho Feb 16, 2014
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
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ module.exports = function (grunt) {
},
helpers: "vendor/js/jasmine-html.js",
vendor: [
"test/vendor/js/synthetic-dom-events.js",
"test/vendor/js/jquery.js",
"test/vendor/js/underscore.js",
"test/vendor/js/backbone.js",
Expand Down
1 change: 1 addition & 0 deletions categories.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
}, {
"name": "Others",
"classes": [
"Backgrid.View",
"Backgrid.Command",
"Backgrid.Grid",
"Backgrid.Body",
Expand Down
Loading