Skip to content

Instantly share code, notes, and snippets.

@aimeerivers
Created December 7, 2011 09:21
Show Gist options
  • Save aimeerivers/1442135 to your computer and use it in GitHub Desktop.
Save aimeerivers/1442135 to your computer and use it in GitHub Desktop.
Sencha touch links not clickable
Ext.application({
name: 'Sencha',
launch: function() {
Ext.create("Ext.TabPanel", {
fullscreen: true,
tabBarPosition: 'bottom',
ui: 'light',
items: [
{
title: 'Home',
iconCls: 'home',
html: [
'<br><br>',
'<a href="#" onclick="alert(\'clicked!\');">click me</a>',
'<br><br>',
'<a href="http://twitter.com" target="_blank">or me</a>',
].join('')
}
]
});
}
});
@kamoljan
Copy link

Did you find solution for this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment