stepped back to previous version of embedding javascript and stylesheet code except moving script and style tags hither.
added javascript function for colorpicker.
This commit is contained in:
parent
6bfdaa04b7
commit
64529c8ca9
1 changed files with 17 additions and 2 deletions
|
@ -5,11 +5,26 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
|
||||||
<head>
|
<head>
|
||||||
<title><% response.title %></title>
|
<title><% response.title %></title>
|
||||||
<script type="text/javascript" src="<% site.url %>javascript"></script>
|
|
||||||
<link rel="stylesheet" type="text/css" href="<% site.url %>stylesheet" media="screen" />
|
|
||||||
<link rel="alternate" type="text/xml" title="XML" href="<% site.url %>rss10" />
|
<link rel="alternate" type="text/xml" title="XML" href="<% site.url %>rss10" />
|
||||||
<meta http-equiv="Content-Type" content="text/html" />
|
<meta http-equiv="Content-Type" content="text/html" />
|
||||||
<meta name="MSSmartTagsPreventParsing" content="TRUE" />
|
<meta name="MSSmartTagsPreventParsing" content="TRUE" />
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
<!--
|
||||||
|
<% site.skin name="style" %>
|
||||||
|
// -->
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script type="text/javascript" language="javascript">
|
||||||
|
<!--
|
||||||
|
<% site.skin name="javascript" %>
|
||||||
|
|
||||||
|
function openColorPicker(form, element) {
|
||||||
|
var cpWindow = window.open("<% root.url path="colorpicker" %>?f=" + form + "&e=" + element, "cpWindow", "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,width=300,height=300");
|
||||||
|
}
|
||||||
|
// -->
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Add table
Reference in a new issue