blob: 9d085235a2566d89ab8867ed6f2b265460738f61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>qooxdoo » Demo</title>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
<![endif]-->
<script type="text/javascript" src="../../script/qx.js"></script>
</head>
<body>
<script type="text/javascript" src="../../script/layout.js"></script>
<div id="demoDescription">
<p>Test some Umlauts methods from the String.prototype.</p>
</div>
<script type="text/javascript">
qx.core.Init.getInstance().defineMain(function()
{
alert("Umlauts Short: " + qx.util.Normalization.umlautsShort("äöüÄÖÜß"))
alert("Umlauts Long: " + qx.util.Normalization.umlautsLong("äöüÄÖÜß"))
});
</script>
</body>
</html>
|