You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The .bind() method has been deprecaten in version 3.0+.
But in the slim build of jQuery the method has been removed directly. So, the uiSref directive fails when tries to attach a handler to the click event.
This only occurs with the slim build. This is not failing with jqLite or jQuery full build.
Can we add support to the slim build? jqLite also supports the `.on()`` method. We just need to replace the bind with the on and this issue is resolved.
The text was updated successfully, but these errors were encountered:
The
.bind()
method has been deprecaten in version 3.0+.But in the slim build of jQuery the method has been removed directly. So, the uiSref directive fails when tries to attach a handler to the click event.
Plunker with the error in the console: https://plnkr.co/edit/2dceELuWmG2wq3027gwD
This only occurs with the slim build. This is not failing with jqLite or jQuery full build.
Can we add support to the slim build? jqLite also supports the `.on()`` method. We just need to replace the bind with the on and this issue is resolved.
The text was updated successfully, but these errors were encountered: