Skip to content

Commit

Permalink
SAK-31128 spinner not being applied to select tool list and confirmat…
Browse files Browse the repository at this point in the history
…ion page's buttons during worksite setup process (sakaiproject#2443)
  • Loading branch information
bjones86 committed May 3, 2016
1 parent 5ff102c commit 72052fb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,21 @@
<input type="hidden" name="back" value="$!backIndex" />
<input type="hidden" name="templateIndex" value="$!templateIndex" />
<p class="act" style="float: none;clear:both">
<input type="button" name="Continue"
<input type="submit" name="Continue" id="btnContinue"
value="$tlang.getString('gen.continue')"
accesskey="s"
class="active"
onclick="document.featuresForm.option.value='continue'; SPNR.disableControlsAndSpin( this, null ); javascript:document.featuresForm.submit();" />
onclick="document.featuresForm.option.value='continue'; SPNR.disableControlsAndSpin( this, null ); document.featuresForm.submit();" />
#if (!$!existSite)
<input type="button" value="$tlang.getString('gen.back')"
name="Back"
<input type="submit" value="$tlang.getString('gen.back')"
name="Back" id="btnBack"
accesskey="b"
onclick="document.featuresForm.option.value='back'; SPNR.disableControlsAndSpin( this, null ); javascript:document.featuresForm.submit();" />
onclick="document.featuresForm.option.value='back'; SPNR.disableControlsAndSpin( this, null ); document.featuresForm.submit();" />
#end
<input type="button" value="$tlang.getString('gen.cancel')"
name="Cancel"
<input type="submit" value="$tlang.getString('gen.cancel')"
name="Cancel" id="btnCancel"
accesskey="x"
onclick="document.featuresForm.option.value='cancel'; SPNR.disableControlsAndSpin( this, null ); javascript:document.featuresForm.submit();" />
onclick="document.featuresForm.option.value='cancel'; SPNR.disableControlsAndSpin( this, null ); document.featuresForm.submit();" />
</p>
<input type="hidden" name="sakai_csrf_token" value="$sakai_csrf_token" />
</form>
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
<input type="hidden" name="continue" value="0" />
<div class="act">
<input
type="button"
type="submit"
class="active"
#if (($!isCourseSite && $!manualAddNumber) || $!selectedRequestedCourse )
#set($name = "$tlang.getString('newsc.reqsite')")
Expand All @@ -356,7 +356,7 @@
/>
<input
class="disableme"
type="button"
type="submit"
name="back"
id="back"
accesskey="b"
Expand All @@ -365,7 +365,7 @@
/>
<input
class="disableme"
type="button"
type="submit"
name="cancel"
id="cancel"
accesskey="x"
Expand Down

0 comments on commit 72052fb

Please sign in to comment.