Skip to content
This repository was archived by the owner on Oct 30, 2021. It is now read-only.

Commit 20f8539

Browse files
committed
Updated to jQuery Mobile RC2
Release pre-flight
1 parent 15c189f commit 20f8539

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

elements/onward/upgradecheck.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected function getLabel()
2222
if(!function_exists("curl_init")) return 'cURL is not supported by your server. Please contact your hosting provider to enable this capability.';
2323
//If cURL is supported, check the current version available.
2424
else
25-
$version = 2;
25+
$version = 3;
2626
$target = 'http://construct-framework.com/upgradecheck/construct5-pro';
2727
$curl = curl_init();
2828
curl_setopt($curl, CURLOPT_URL, $target);

elements/present/upgradecheck.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function fetchElement($name, $value, &$node, $control_name)
1717
if(!function_exists("curl_init")) return 'cURL is not supported by your server. Please contact your hosting provider to enable this capability.';
1818
//If cURL is supported, check the current version available.
1919
else
20-
$version = 2;
20+
$version = 3;
2121
$target = 'http://construct-framework.com/upgradecheck/construct5-pro';
2222
$curl = curl_init();
2323
curl_setopt($curl, CURLOPT_URL, $target);

layouts/mobile-offline.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<head>
1414
<meta http-equiv="Content-Type" content="<?php echo $contenttype; ?>; charset=utf-8" />
1515
<link rel="stylesheet" href="<?php echo $baseUrl.'templates/'.$this->template; ?>/css/mobile.css" type="text/css" media="screen" />
16-
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.css" />
16+
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
1717
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
18-
<script src="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.js"></script>
18+
<script src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
1919
<script>
2020
$(document).ready(function() {
2121
$('body').removeClass("noscript");

layouts/mobile.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
<head>
1414
<meta http-equiv="Content-Type" content="<?php echo $contenttype; ?>; charset=utf-8" />
1515
<link rel="stylesheet" href="<?php echo $baseUrl.'templates/'.$this->template; ?>/css/mobile.css" type="text/css" media="screen" />
16-
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.css" />
16+
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
1717
<?php //Load Mobile Extended Template Style Overrides
1818
$mobileCssFile = $mobileStyleOverride->getIncludeFile ();
1919
if ($mobileCssFile) : ?>
2020
<link rel="stylesheet" href="<?php echo $baseUrl.$mobileCssFile; ?>" type="text/css" media="screen" />
2121
<?php endif; ?>
2222
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
23-
<script src="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.js"></script>
23+
<script src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
2424
<script>
2525
(function($) { //enable using $ along side of other libraries
2626
$(document).ready(function() {

mobile-offline.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
<head>
2525
<meta http-equiv="Content-Type" content="<?php echo $contenttype; ?>; charset=utf-8" />
2626
<link rel="stylesheet" href="<?php echo $baseUrl.'templates/'.$this->template; ?>/css/mobile.css" type="text/css" media="screen" />
27-
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.css" />
27+
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
2828
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
29-
<script src="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.js"></script>
29+
<script src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
3030
<script>
3131
$(document).ready(function() {
3232
$('body').removeClass("noscript");

mobile.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
<head>
2727
<meta http-equiv="Content-Type" content="<?php echo $contenttype; ?>; charset=utf-8" />
2828
<link rel="stylesheet" href="<?php echo $baseUrl.'templates/'.$this->template; ?>/css/mobile.css" type="text/css" media="screen" />
29-
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.css" />
29+
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
3030
<?php //Load Mobile Extended Template Style Overrides
3131
$mobileCssFile = $mobileStyleOverride->getIncludeFile ();
3232
if ($mobileCssFile) : ?>
3333
<link rel="stylesheet" href="<?php echo $baseUrl.$mobileCssFile; ?>" type="text/css" media="screen" />
3434
<?php endif; ?>
3535
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
36-
<script src="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.js"></script>
36+
<script src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
3737
<script>
3838
(function($) { //enable using $ along side of other libraries
3939
$(document).ready(function() {

templateDetails.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<!DOCTYPE install PUBLIC "-//Joomla! 1.6//DTD template 1.0//EN" "http://www.joomla.org/xml/dtd/1.6/template-install.dtd">
33
<install version="1.6" type="template" client="site" method="upgrade">
44
<name>construct5-pro</name>
5-
<creationDate>October 19th, 2011</creationDate>
5+
<creationDate>October 25th, 2011</creationDate>
66
<author>Cristina Solana | Matt Thomas</author>
77
<authorEmail>[email protected]</authorEmail>
88
<authorUrl>http://construct-framework.com</authorUrl>
99
<copyright>Copyright (C) 2009 - 2011 Matt Thomas. All rights reserved.</copyright>
1010
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
11-
<version>2.5.2 Beta</version>
11+
<version>2.5.3 Beta</version>
1212
<description><![CDATA[
1313
<style type="text/css">
1414
.panel {background: #ddd;

0 commit comments

Comments
 (0)