-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include version info in "about" page
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,11 +14,14 @@ | |
You should have received a copy of the GNU General Public License along with this program; | ||
if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
--> | ||
<div id="dlg_about" class="easyui-window" title="Acerca de" style="width:640px;padding:10px"> | ||
<div id="dlg_about" class="easyui-window" style="width:640px;padding:10px"> | ||
<img src="/agility/images/AgilityContest.png" | ||
width="150" height="100" alt="AgilityContest Logo" | ||
style="border:1px solid #000000;margin:10px;float:right;padding:5px"> | ||
<dl> | ||
<dt> | ||
<strong>Version: </strong><span id="about_version">version</span> - <span id="about_date">date</span> | ||
</dt> | ||
<dt> | ||
<strong>AgilityContest</strong> es Copyright © 2013-2015 de <em>Juan Antonio Martínez <[email protected]></em> | ||
</dt> | ||
|
@@ -58,13 +61,18 @@ | |
</div> | ||
<script type="text/javascript"> | ||
$('#dlg_about').window({ | ||
title: "Acerca de AgilityContest", | ||
collapsible:false, | ||
minimizable:false, | ||
maximizable:false, | ||
resizable:false, | ||
closable:true, | ||
modal:true, | ||
iconCls: 'icon-dog', | ||
onOpen: function() { | ||
$('#about_version').html(ac_config.version_name); | ||
$('#about_date').html(ac_config.version_date); | ||
}, | ||
onClose: function() {loadContents('/agility/client/frm_main.php',''); | ||
} | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters