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
window.onload = function() | |
{ | |
var messages = {}; | |
var xhr = Titanium.Network.createHTTPClient(); | |
xhr.onload = function() | |
{ | |
// convert the response JSON text into a JavaScript object | |
var json = eval('(' + this.responseText + ')'); |
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
var optionData = [ | |
{title:'Family Tree', "hasChild": "true"}, | |
{title:'Faith-based Initiatives', "hasChild": "true"}, | |
{title:'Why Am I?', "hasChild": "true"} | |
]; | |
var optionSection = Titanium.UI.iPhone.createGroupedSection({header:'Message Series', type:'option', data:optionData}); | |
// create the grouped view | |
var groupedView = Titanium.UI.iPhone.createGroupedView(); |
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
<html> | |
<head> | |
<style type="text/css" media="screen"> | |
h2 { | |
float: left; | |
} | |
p { | |
float: left; | |
} |
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
window.onload = function() | |
{ | |
var xhr1 = Titanium.Network.createHTTPClient(); | |
var xhr2 = Titanium.Network.createHTTPClient(); | |
var callOne = false; | |
var callTwo = false; | |
var section1 = null; | |
var section2 = null; |
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
// Run via OS X Terminal.app to block junk tweets in Tweetie. | |
// Info: http://atebits.posterous.com/test-filtering-in-tweetie-for-mac | |
defaults write com.atebits.tweetie-mac filterTerms -array "@gowalla" "http://gowal.la" "@foursquare" "http://4sq.com" |
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
/* `HTML5 Reset | |
----------------------------------------------------------------------------------------------------*/ | |
a, | |
abbr, | |
address, | |
article, | |
aside, | |
audio, | |
b, |
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
// TinyMCE Settings. | |
tinyMCE.init({ | |
extended_valid_elements: 'style', | |
mode: 'exact', | |
elements: 'id_name', | |
theme: 'advanced', | |
theme_advanced_toolbar_location: 'top', | |
theme_advanced_toolbar_align: 'left', | |
plugins: 'safari, style, table, paste, media', | |
theme_advanced_buttons1: 'bold, italic, underline, justifyleft, justifycenter, justifyright, justifyfull, formatselect, fontselect, fontsizeselect', |
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
* { | |
font-family: Helvetica !important; | |
cursor: default; | |
} | |
/* The Message listing */ | |
div.BMRW0e:nth-child(2) div.uQdvnb:nth-child(1) { | |
display:block; | |
overflow-x:hidden; | |
overflow-y:scroll; |
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
// ==UserScript== | |
// @name iPad Gmail fix | |
// @namespace http://fluidapp.com | |
// @description Resizes the window to iPad specs | |
// @include * | |
// @author David Hemphill | |
// ==/UserScript== | |
(function () { | |
if (window.fluid) { |
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
/* @override http://workshop.wpcoder.com/dan/HFM/wp-content/themes/HF&M/css/style.css */ | |
body { | |
background: #FFFFFF; | |
color: #000000; | |
} | |
a, a:visited { | |
color: #000; | |
text-decoration: none; |
OlderNewer