We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4f1269 commit 2487245Copy full SHA for 2487245
inst/www/shared/shiny.js
@@ -969,7 +969,7 @@
969
open: function(message) {
970
// Add progress container (for all progress items) if not already present
971
var $container = $('.shiny-progress-container');
972
- if ($container.length == 0) {
+ if ($container.length === 0) {
973
$container = $('<div class="shiny-progress-container"></div>');
974
$('body').append($container);
975
}
@@ -1024,7 +1024,7 @@
1024
$progress.remove();
1025
1026
// If this was the last shiny-progress, remove container
1027
- if ($('.shiny-progress').length == 0)
+ if ($('.shiny-progress').length === 0)
1028
$('.shiny-progress-container').remove();
1029
1030
});
0 commit comments