Created
December 7, 2011 09:21
-
-
Save aimeerivers/1442135 to your computer and use it in GitHub Desktop.
Sencha touch links not clickable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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('') | |
} | |
] | |
}); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did you find solution for this?