...
Code Block | ||||
---|---|---|---|---|
| ||||
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Profound UI Example - Running Locally</title>
<link href="profoundui.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/runtime.js"></script>
<script type="text/javascript">
window.onload = function() {
pui.start();
};
</script>
</head>
<body>
<div id="pui"></div>
</body>
</html>
|
...
Code Block | ||||
---|---|---|---|---|
| ||||
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Profound UI Example - Running Locally</title>
<link href="profoundui.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/runtime.js"></script>
<script type="text/javascript">
window.onload = function() {
pui.controller = "myscript.php";
pui.start();
};
</script>
</head>
<body>
<div id="pui"></div>
</body>
</html>
|
...