Commit Graph

2872 Commits

Author SHA1 Message Date
juristr
a7d22af587 add missing closing slashes 2016-01-02 18:24:35 +01:00
Jonathan Garbee
b835cb3894 Hide number spinners for textfields. 2015-12-30 06:18:43 -05:00
Jonathan Garbee
dd7bb3d0be Merge pull request #2379 from oddui/fix-textfield-focus
fix textfield `focus` listener on safari
2015-12-29 07:38:03 -05:00
Ziyu Wang
9958e9ac84 fix MaterialRipple#upHandler_() 2015-12-29 13:55:10 +11:00
Ziyu Wang
0330aa1ffd fix textfield focus listener on safari
On safari, the `focus` listeners seem to be called before ':focus' could
be selected.
2015-12-29 12:01:09 +11:00
Jonathan Garbee
2a82456dcb Add note on parent position requirement. 2015-12-25 06:39:54 -05:00
Jonathan Garbee
a33aa8e6c3 Update progress readme for new modifier. 2015-12-23 18:55:32 -05:00
Jonathan Garbee
37f989ada9 Change to modifier for intermediate progress state. 2015-12-23 18:54:02 -05:00
Jonathan Garbee
6d90fd4cde Update typography of navigation links. 2015-12-23 06:04:30 -05:00
alex
1a28d77e15 Use npm update in drone builds
As suggested in
https://github.com/google/material-design-lite/issues/2032#issuecomment-166700642
2015-12-22 19:16:08 +00:00
Jonathan Garbee
3d66281bb5 Merge pull request #2029 from listepo/gitter
Added gitter badge
2015-12-21 17:04:33 -05:00
Jonathan Garbee
2089a682f7 Refactor snackbar. 2015-12-21 16:55:50 -05:00
Ivan Tugay
678c6cf4dd Added gitter badge 2015-12-21 10:41:03 +00:00
Jonathan Garbee
c4c8427c61 Fixed downgrading to always remove internal references. 2015-12-19 12:59:08 -05:00
Jonathan Garbee
881cfac4ca Add font family to textfield inputs for consistency. 2015-12-19 09:15:25 -05:00
Jonathan Garbee
ef4135d7b5 Merge pull request #2016 from google/hotfix/checkFocus
Fix duplicate checkFocus method.
2015-12-17 16:30:38 -05:00
Sam Saccone
2af227bfd5 Merge pull request #2000 from indicee/master
Update package.json
2015-12-17 10:59:14 -08:00
Oleg
79395f9af9 Update package.json 2015-12-16 14:24:23 -08:00
Oleg
298e66d47a Update package.json 2015-12-16 13:36:20 -08:00
Jonathan Garbee
0ad142e28f Fix duplicate checkFocus method. 2015-12-15 09:52:25 -05:00
Jonathan Garbee
6c98cc1173 Remove buggy focus test. 2015-12-15 08:54:12 -05:00
Jonathan Garbee
5b491f6f98 Merge pull request #1873 from google/garbee/feature/textfield-autofocus
Textfield can autofocus.
2015-12-15 08:45:35 -05:00
Sérgio Gomes
d27f47fd28 Adding documentation for new data-table options 2015-12-15 11:26:36 +00:00
Sérgio Gomes
62af49cd65 Merge pull request #1963 from alitas/issue-1961
Showing sorting indicators in table column headers (fixes #1961)
2015-12-15 11:20:47 +00:00
Sérgio Gomes
a2ae0208a1 Fixing layout after what looks like a bad merge. 2015-12-14 14:06:22 +00:00
alex
85707cc1db Merge pull request #1966 from google/jscsrc
Make gulp:all and CI-related tasks work
2015-12-14 13:49:14 +00:00
alex
ffb3eb1763 Fix memory test output 2015-12-14 11:35:47 +00:00
alex
857fe1f401 Remove phantom from top level deps 2015-12-14 10:59:10 +00:00
alex
6fa662ecc5 Add drone upgrade-related changes 2015-12-14 10:54:19 +00:00
Jonathan Garbee
4126576301 Merge branch 'tschiela-fix/menu-a11y' 2015-12-13 15:08:12 -05:00
Jonathan Garbee
49eae67100 Merge a11y upgrades with latest layout modifications. 2015-12-13 15:07:57 -05:00
Jonathan Garbee
ab3d6af476 Merge pull request #1958 from google/issue-1859
Use Unicode point for layout hamburger button (fixes #1859)
2015-12-13 15:03:09 -05:00
Oleg
17254b215e Update package.json
Added default entry point, as per comment in https://github.com/google/material-design-lite/issues/1214
2015-12-11 11:11:56 -08:00
Surma
adae90db8f Update drool and API calls 2015-12-11 16:54:27 +00:00
Sam Saccone
cb25ee7d07 Merge pull request #1994 from afonsopacifer/contribution-adjustments
Fix links and grammar
2015-12-09 16:24:05 -08:00
afonsopacifer
4bb9ddba4f Fix links and grammar 2015-12-09 22:04:12 -02:00
Surma
601515117e Remove gulpfile from linting 2015-12-09 23:26:26 +00:00
alex
b1f840d3b6 An attempt to fix phantomjs-based tests in CI 2015-12-09 22:19:15 +00:00
alex
b99b01b54a Upgraded drone config 2015-12-09 16:24:38 +00:00
Sérgio Gomes
96e7ea0131 Merge pull request #1965 from google/sjs/menu-leak-take2
Utilize event deduping optmization with addEventListener
2015-12-09 15:52:18 +00:00
Sam Saccone
402ae63511 Utilize event deduping with addEventListener
The initial leak found here
https://github.com/google/material-design-lite/issues/761

And then patched here
957656d2be

Was never the "correct" fix. Yes the patch in
957656d2be cause us to no longer leak
however we were still paying the cost of registering and unregistering
for the same event over and over, as well as allocating a new bound
scope each time (thus generating more garbage and thus eventually
causing more time to be spent int GC)

Instead I opted here to take advantage of addEventListener and its
ability to automatically discard duplicate listeners.

> If multiple identical EventListeners are registered on the same
> EventTarget with the same parameters, the duplicate instances are
> discarded. They do not cause the EventListener to be called twice, and
> they do not need to be removed manually with the removeEventListener
> method.
https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#Multiple_identical_event_listeners

Because there is no outside pointers into this event, there is no need
to remove the listener anymore, because once the node reference becomes
unreachable the events will be automatically GCd for us.

:)
2015-12-08 19:03:01 -08:00
Sam Saccone
9920165572 Merge pull request #1962 from posva/fix-badge-overlap
Fix margin-right when using .mdl-badge--overlap
2015-12-06 17:29:30 +01:00
ali-tas
bb1550c8c6 Changed modifier naming to refer to the header block instead of the whole data table 2015-12-06 18:16:46 +02:00
ali-tas
146792e803 Changed ligatures to codepoints 2015-12-06 18:15:27 +02:00
ali-tas
a8ceb94ad1 Added sorted column style as described in https://www.google.com/design/spec/components/data-tables.html#data-tables-interaction 2015-12-06 15:56:26 +02:00
ali-tas
dd519fc4ba Converted material-icons typography class into a mixin 2015-12-06 15:55:44 +02:00
Eduardo San Martin Morote
115d2ea820 Fix margin-right when using .mdl-badge--overlap
The overlap can be modified by changing the $badge-overlap variable
2015-12-06 12:12:47 +01:00
Jonathan Garbee
75f28f10e0 Merge pull request #1960 from Garbee/mdl-lists
🆕 List component
2015-12-04 12:12:47 -05:00
Surma
efb3bdb5ae Merge pull request #1959 from google/Tooltip-positions
Tooltip positions
2015-12-04 16:48:26 +00:00
Surma
081629dca9 Extend documentation for tooltips 2015-12-04 16:42:50 +00:00