10000 [WebProfilerBundle] Remove loading status from AJAX toolbar after error by kucharovic · Pull Request #17283 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WebProfilerBundle] Remove loading status from AJAX toolbar after error #17283

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[WebProfilerBundle] Remove loading status from AJAX toolbar after error
  • Loading branch information
kucharovic committed Jan 6, 2016
commit 8790a2f7d7252747f72ad260a8fb6c7a9a48dd05
5C19
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@
Sfjs.removeClass(ajaxToolbarPanel, 'sf-toolbar-status-red');
} else if (state == 'error') {
Sfjs.addClass(ajaxToolbarPanel, 'sf-toolbar-status-red');
Sfjs.removeClass(ajaxToolbarPanel, 'sf-ajax-request-loading');
} else {
Sfjs.addClass(ajaxToolbarPanel, 'sf-ajax-request-loading');
}
Expand Down
0