summaryrefslogtreecommitdiff
path: root/Postman/Postman-Configuration/postman_wizard.js
diff options
context:
space:
mode:
Diffstat (limited to 'Postman/Postman-Configuration/postman_wizard.js')
-rw-r--r--Postman/Postman-Configuration/postman_wizard.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/Postman/Postman-Configuration/postman_wizard.js b/Postman/Postman-Configuration/postman_wizard.js
index 8e1a68c..c29edb4 100644
--- a/Postman/Postman-Configuration/postman_wizard.js
+++ b/Postman/Postman-Configuration/postman_wizard.js
@@ -494,21 +494,21 @@ function handleConfigurationResponse(response) {
}
jQuery('select#input_notification_service').change(function() {
- var selected = $( this ).val();
+ var selected = jQuery( this ).val();
if ( selected == 'default' ) {
- $('#slack_cred').fadeOut('fast');
- $('#pushover_cred').fadeOut('fast');
+ jQuery('#slack_cred').fadeOut('fast');
+ jQuery('#pushover_cred').fadeOut('fast');
}
if ( selected == 'pushover' ) {
- $('#slack_cred').fadeOut('fast');
- $('#pushover_cred').fadeIn();
+ jQuery('#slack_cred').fadeOut('fast');
+ jQuery('#pushover_cred').fadeIn();
}
if ( selected == 'slack' ) {
- $('#pushover_cred').fadeOut('fast');
- $('#slack_cred').fadeIn();
+ jQuery('#pushover_cred').fadeOut('fast');
+ jQuery('#slack_cred').fadeIn();
}
});