From 1e757cc087135e4a5d55617ad6bbf34cafc5674d Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Fri, 22 May 2015 23:12:09 -0500 Subject: [PATCH] Adjust disabled button look --- website/views/options/social/chat-box.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/views/options/social/chat-box.jade b/website/views/options/social/chat-box.jade index 542f945c7d..fb109b70bf 100644 --- a/website/views/options/social/chat-box.jade +++ b/website/views/options/social/chat-box.jade @@ -20,5 +20,5 @@ form.chat-form(ng-if='user.flags.communityGuidelinesAccepted' ng-submit='postCha .chat-formatting include ../../shared/formatting-help .chat-buttons - input(type='submit', value=env.t('sendChat'), ng-class='{disabled: _sending == true}', class='btn') - button(type="button", ng-click='sync(group)', ng-class='{disabled: _sending == true}', class='btn')=env.t('toolTipMsg') + input.btn(type='submit', value=env.t('sendChat'), ng-disabled='_sending') + button.btn(type="button", ng-click='sync(group)', ng-disabled='_sending')=env.t('toolTipMsg')