Short titles in title bar also gets clipped with text-ellipsis?
I was wondering, is this a bug or a new feature of Sencha Touch 2.0.1.
All the titles in the titlebar gets clipped with text-ellipsis. - So also the really short title's.
For me this looks a bit strange... Is there a setting to disable this functionality?
Cause right now I have to overrule the CSS to fix it.
Thanks!
Lee
Testing: Sencha Touch 2.0.1.
On PC with Chrome 21
Code:
<html><head>
<title>Sencha Touch examples</title>
<link rel="stylesheet" type="text/css " href="http://dev.sencha.com/deploy/sencha-touch-2.0.1/resources/css/sencha-touch.css" />
<script type = "text/javascript"src = "http://dev.sencha.com/deploy/sencha-touch-2.0.1/sencha-touch-all.js" > </script>
<script type="text/javascript">
Ext.application({
name: 'Hello World',
launch: function() {
Ext.create('Ext.Container', {
fullscreen: true,
items: [{
xtype : 'toolbar',
docked: 'top',
title: 'App'
},
{
xtype: 'panel',
html: '<h2>Hello World!</h2>'
}]
});
}
});
</script>
</head>
<body>
</body>
</html>