Skip to content

Instantly share code, notes, and snippets.

@feedhenry-gists
feedhenry-gists / gist:1026733
Created June 15, 2011 08:55
HTML and iScroll Tabbed UI Template Default Tag
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=no"></meta>
@feedhenry-gists
feedhenry-gists / gist:1025136
Created June 14, 2011 15:27
Eclipse Plug-In - Installation Path
http://plugins.feedhenry.com/studio/eclipse
@feedhenry-gists
feedhenry-gists / gist:1025109
Created June 14, 2011 15:15
Fluid Measurements Fluid Font Size Example: Ems
#my_div {
font-size: Arial, Sans-Serif;
font-size: 1em;
}
@feedhenry-gists
feedhenry-gists / gist:1025108
Created June 14, 2011 15:14
Fluid Measurements Fluid Font Size Example: Percentages
#my_div {
font-size: Arial, Sans-Serif;
font-size: 100%;
}
@feedhenry-gists
feedhenry-gists / gist:1025101
Created June 14, 2011 15:12
Fluid Measurements Fixed Font Size Example
#my_div {
font-family: Arial, Sans-Serif;
font-size: 12px;
}
@feedhenry-gists
feedhenry-gists / gist:1025098
Created June 14, 2011 15:12
Fluid Measurements Fluid Width Div Example
#my_div {
width: 80%;
}
@feedhenry-gists
feedhenry-gists / gist:1025094
Created June 14, 2011 15:11
Fluid Measurements Fixed Width Div Example
#my_div {
width: 200px;
}
@feedhenry-gists
feedhenry-gists / gist:1024737
Created June 14, 2011 11:36
Tutorial Sencha Touch Fallback
// Get the latest view definition from server
$fh.act({act: 'getUI', req: {} }, function (res) {
// Returned object is our menu definition, so we can use it to initialise the menu, but lets save it locally first
$fh.data({
act: 'save',
key: 'menu_definition',
val: JSON.stringify(res)
});
@feedhenry-gists
feedhenry-gists / gist:1024734
Created June 14, 2011 11:36
Tutorial Sencha Touch Notify Menu
// Define the 5th item in the menu
menu[5] = {
title: 'Notify', // Title as it should appear in Menu
// Array of items that should be in the Notify menu item
items: [{
ui_type: 'Ext.Button', // Simple button
text: 'Vibrate', // Button text
ui: 'action', // UI Type
margin: 5,
@feedhenry-gists
feedhenry-gists / gist:1024731
Created June 14, 2011 11:35
Tutorial Sencha Touch Display Contact
....
inst.v.cList = new Ext.List({
itemTpl: '{first} {last}',
grouped: true,
indexBar: true,
store: store
});
....