Upgrading to jQuery 1.8.0

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2012-08-21 11:01:13 -07:00
parent 229a16134d
commit 34719ead66
5 changed files with 4070 additions and 4106 deletions

View File

@@ -21,6 +21,10 @@
</UpgradeBackupLocation>
<TargetFrameworkProfile />
<UseIISExpress>false</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@@ -49,9 +53,9 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Content Include="Scripts\jquery-1.8.0.js" />
<Content Include="Scripts\jquery-1.8.0.min.js" />
<Content Include="Scripts\jquery.ui.timepicker.min.js" />
<Content Include="Scripts\jquery-1.7.1.js" />
<Content Include="Scripts\jquery-1.7.1.min.js" />
<Content Include="Scripts\jquery-ui.js" />
<Content Include="Scripts\jquery-ui.min.js" />
<Content Include="Scripts\jquery.effects.blind.js" />

View File

@@ -4,7 +4,8 @@ namespace Orchard.jQuery {
public class ResourceManifest : IResourceManifestProvider {
public void BuildManifests(ResourceManifestBuilder builder) {
var manifest = builder.Add();
manifest.DefineScript("jQuery").SetUrl("jquery-1.7.1.min.js", "jquery-1.7.1.js").SetVersion("1.7.1");
manifest.DefineScript("jQuery").SetUrl("jquery-1.8.0.min.js", "jquery-1.8.0.js").SetVersion("1.8.0")
.SetCdn("http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.min.js", "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.min.js", true);
// Full jQuery UI bundle
manifest.DefineScript("jQueryUI").SetUrl("jquery-ui.min.js", "jquery-ui.js").SetVersion("1.8.18").SetDependencies("jQuery");

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long