File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -1154,6 +1154,18 @@ var __meta__ = { // jshint ignore:line
11541154 }
11551155 } ) ,
11561156
1157+ floatingLabel : Binder . extend ( {
1158+ init : function ( widget , bindings , options ) {
1159+ Binder . fn . init . call ( this , widget . element [ 0 ] , bindings , options ) ;
1160+
1161+ if ( ! widget . floatingLabel ) {
1162+ return ;
1163+ }
1164+
1165+ widget . floatingLabel . refresh ( ) ;
1166+ }
1167+ } ) ,
1168+
11571169 enabled : Binder . extend ( {
11581170 init : function ( widget , bindings , options ) {
11591171 Binder . fn . init . call ( this , widget . element [ 0 ] , bindings , options ) ;
@@ -1748,6 +1760,10 @@ var __meta__ = { // jshint ignore:line
17481760 if ( hasCss && ! widgetBinding ) {
17491761 this . applyBinding ( CSS , bindings , specificBinders ) ;
17501762 }
1763+
1764+ if ( widgetBinding && this . target && this . target . floatingLabel ) {
1765+ this . applyBinding ( "floatingLabel" , bindings , specificBinders ) ;
1766+ }
17511767 } ,
17521768
17531769 binders : function ( ) {
You can’t perform that action at this time.
0 commit comments