MDL-56292 core: auto_rows should fire event on element

This commit is contained in:
Ryan Wyllie
2016-10-10 12:48:52 +08:00
committed by Mark Nelson
parent eea7dd4156
commit 2d552f37b8
+1 -1
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);
}
});
};