MDL-56292 core: auto_rows should fire event on element

This commit is contained in:
Ryan Wyllie 2016-09-29 05:28:09 +00:00 committed by Mark Nelson
parent eea7dd4156
commit 2d552f37b8

View File

@ -80,7 +80,7 @@ define(['jquery'], function($) {
if (rows != currentRows) {
element.attr('rows', rows);
$(document).trigger(EVENTS.ROW_CHANGE);
$(root).trigger(EVENTS.ROW_CHANGE);
}
});
};