You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2015/05/28 22:13:22 UTC

[20/26] allura git commit: [#7868] ticket:776 Fix function definition syntax

[#7868] ticket:776 Fix function definition syntax


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/cd395f91
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/cd395f91
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/cd395f91

Branch: refs/heads/master
Commit: cd395f91e208aa09aebde48198a3c841fdcb2114
Parents: 4b7cdb6
Author: Igor Bondarenko <je...@gmail.com>
Authored: Mon May 25 16:01:23 2015 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Thu May 28 20:11:46 2015 +0000

----------------------------------------------------------------------
 Allura/allura/public/nf/js/phone-verification.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/cd395f91/Allura/allura/public/nf/js/phone-verification.js
----------------------------------------------------------------------
diff --git a/Allura/allura/public/nf/js/phone-verification.js b/Allura/allura/public/nf/js/phone-verification.js
index 225d2a9..77d25f7 100644
--- a/Allura/allura/public/nf/js/phone-verification.js
+++ b/Allura/allura/public/nf/js/phone-verification.js
@@ -98,9 +98,9 @@ var FormStepMixin = {
     }
   },
 
-  isInputDisabled() { return this.props.state.in_progress; },
+  isInputDisabled: function() { return this.props.state.in_progress; },
 
-  isButtonDisabled() {
+  isButtonDisabled: function() {
     var input = this.props.state[this.getKey()];
     var has_input = Boolean(input);
     return this.isInputDisabled() || !has_input;