Skip to content
This repository has been archived by the owner on Nov 21, 2021. It is now read-only.

Commit

Permalink
#18 - jQuery references need to specify "https://" (not "http://") wh…
Browse files Browse the repository at this point in the history
…en browsing Subtext pages using HTTPS
  • Loading branch information
jeremy-jameson committed Jan 31, 2012
1 parent e8e4df8 commit f59d7c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Subtext.Web/aspx/Admin/WebUI/AdminPageTemplate.Master
Expand Up @@ -4,9 +4,9 @@
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Subtext - Admin</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="<%= Request.IsSecureConnection ? "https" : "http" %>://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="<%= VirtualPathUtility.ToAbsolute("~/aspx/Admin/js/jquery-impromptu.3.1.min.js") %>"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js"></script>
<script type="text/javascript" src="<%= Request.IsSecureConnection ? "https" : "http" %>://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js"></script>
<script type="text/javascript" src="<%= VirtualPathUtility.ToAbsolute("~/Scripts/jquery.form.js") %>" ></script>
<script type="text/javascript" src="<%= VirtualPathUtility.ToAbsolute("~/Scripts/jquery.hotkeys.min.js") %>" ></script>
<script type="text/javascript" src="<%= VirtualPathUtility.ToAbsolute("~/Scripts/common.js") %>" ></script>
Expand Down
2 changes: 1 addition & 1 deletion src/Subtext.Web/aspx/DTP.aspx
Expand Up @@ -15,7 +15,7 @@
<link id="Rsd" rel="EditURI" type="application/rsd+xml" title="RSD" runat="server" />
<link id="wlwmanifest" rel="wlwmanifest" type="application/wlwmanifest+xml" runat="server" />
<link id="opensearch" rel="search" type="application/opensearchdescription+xml" runat="server" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript" src="<%= Request.IsSecureConnection ? "https" : "http" %>://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript" src="<%= VirtualPathUtility.ToAbsolute("~/Scripts/common.js") %>"></script>
<script type="text/javascript">
<%= AllowedHtmlJavascriptDeclaration %>
Expand Down

0 comments on commit f59d7c3

Please sign in to comment.