view/applications/install.xhtml in ruby-station-0.0.4 vs view/applications/install.xhtml in ruby-station-0.1.0
- old
+ new
@@ -1,21 +1,25 @@
<div id="install">
<h2>Installing application</h2>
+ <p>
+ This may take some minutes. Please be patient.
+ </p>
+
<?r if @name ?>
<p>Installing gem '#{@name}'...</p>
<?r else ?>
<p>Installing gem '#{@filename}'... (#{@size} bytes)</p>
<?r end ?>
<pre id="result">
- <img src='/spinner.gif'>
+ <img id="spinner" src='/spinner.gif'>
</pre>
<a href='/'>back</a>
</div>
<script type="text/javascript">
$(document).ready(function(){
- $("#result").load("#{r(:do_install)}");
+ $("#result").load("#{r(:_install)}");
});
</script>