Skip to content

Commit

Permalink
refs #17632, minor test cleanup for dojox/form/Uploader
Browse files Browse the repository at this point in the history
  • Loading branch information
dylans committed May 7, 2014
1 parent 8f4fb85 commit bec05d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion form/tests/test_Uploader.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ <h1>Test dojox/form/Uploader</h1>
<form method="post" action="UploadFile.php" id="myForm" enctype="multipart/form-data" >
<fieldset>
<legend>Block Browse Button Form Post Test</legend>
<input class="browseButton" data-dojo-props='name:"uploadedfile", multiple:true, force:"html5", label:"Select Some Files", isDebug:true' type="file" data-dojo-type="dojox/form/Uploader" id="uploader"/>
<input class="browseButton" data-dojo-props='name:"uploadedfile", multiple:true, force:"html5", label:"Select Some Files", isDebug:true, uploadOnSelect:true' type="file" data-dojo-type="dojox/form/Uploader" id="uploader"/>
<input type="text" name="album" value="Summer Vacation" aria-label="album" />
+ <input type="text" name="year" value="2011" aria-label="year" />
<input type="button" id="remBtn" label="Clear" data-dojo-type="dijit/form/Button" />
Expand Down
2 changes: 1 addition & 1 deletion form/tests/test_Uploader_programmatic.html
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ <h1>Test dojox.form.Uploader Programmatic</h1>
});
}
var u = new dojox.form.Uploader({label:"Programmatic Uploader", multiple:true, uploadOnSelect:true, url:"UploadFile.php"});
dojo.byId("parentdiv").appendChild(u.domNode);
dojo.byId("parent").appendChild(u.domNode);
u.startup();

handleUpload(u, dojo.byId('colImages'));
Expand Down

0 comments on commit bec05d5

Please sign in to comment.