streams-settings: Fix toggle icon not updating.

This commit fixes a regression which was introduced while
we were removing icon-vector and replacing the same with
font-awesome. We forgot to update the toggle icons from the
JS file.
This commit is contained in:
Akash Nimare
2018-06-25 22:24:08 +05:30
committed by showell
parent 2977a4cb6f
commit c82734d9c5

View File

@@ -328,7 +328,7 @@ exports.create_handlers_for_users = function (container) {
container.on('click', '#copy-from-stream-expand-collapse', function (e) {
$('#stream-checkboxes').toggle();
$("#copy-from-stream-expand-collapse .toggle").toggleClass('icon-vector-caret-right icon-vector-caret-down');
$("#copy-from-stream-expand-collapse .toggle").toggleClass('fa-caret-right fa-caret-down');
e.preventDefault();
update_announce_stream_state();
});