This file contains 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
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=no"></meta> |
This file contains 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
http://plugins.feedhenry.com/studio/eclipse |
This file contains 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
#my_div { | |
font-size: Arial, Sans-Serif; | |
font-size: 1em; | |
} |
This file contains 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
#my_div { | |
font-size: Arial, Sans-Serif; | |
font-size: 100%; | |
} |
This file contains 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
#my_div { | |
font-family: Arial, Sans-Serif; | |
font-size: 12px; | |
} |
This file contains 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
#my_div { | |
width: 80%; | |
} |
This file contains 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
#my_div { | |
width: 200px; | |
} |
This file contains 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
// 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) | |
}); |
This file contains 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
// 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, |
This file contains 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
.... | |
inst.v.cList = new Ext.List({ | |
itemTpl: '{first} {last}', | |
grouped: true, | |
indexBar: true, | |
store: store | |
}); | |
.... |