Skip to content

Commit

Permalink
WBRI-78
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@696 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Dec 24, 2008
1 parent b4e7fdb commit c72ac20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/numberguess/WebContent/home.xhtml
Expand Up @@ -21,10 +21,10 @@

<div>
Your guess:
<h:inputText id="inputGuess" value="#{game.guess}" required="true" size="3">
<h:inputText id="inputGuess" value="#{game.guess}" required="true" size="3" disabled="#{game.number eq game.guess}">
<f:validateLongRange maximum="#{game.biggest}" minimum="#{game.smallest}"/>
</h:inputText>
<h:commandButton id="GuessButton" value="Guess" action="#{game.check}"/>
<h:commandButton id="GuessButton" value="Guess" action="#{game.check}" disabled="#{game.number eq game.guess}"/>
</div>
</h:form>
</ui:define>
Expand Down

0 comments on commit c72ac20

Please sign in to comment.