Brand
Home
Profile
Messages
Inbox
Drafts
Sent Items
Trash
...
Saturday, April 4, 2015
Friday, February 6, 2015
We Pay
Example page header Subtext for header
Heading
View details »
Heading
WePay.iframe_checkout("wepay_checkout", "https://stage.wepay.com/api/checkout/12345");
Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada...
Thursday, January 22, 2015
Wednesday, September 17, 2014
Bootstrap Modals Information Nav/Pops/Directories
Developing Consistent Design Pattens Subtext for header Heading View details » Heading You can activate a Twitter Bootstrap modal window by clicking on the button or link without writing any JavaScript code via data attributes. Set data-toggle="modal" on a controller element, like a button or an anchor, along with a data-target="#myModal" or href="#myModal" to target a specific modal...
Tuesday, September 16, 2014
HTML Ampersand Character Codes
HTML Ampersand Character Codes
These are character sequences that may appear in HTML documents; they represent sometimes useful symbols that are not part of the standard ASCII set or that would be difficult or impossible to type otherwise (e.g. the less-than sign, which would always be mistaken for the beginning of an HTML tag). Case is signinficant.
The content of this table has been throughly...
Google Drive SDK: Creating Public Folder (from SDK)
×
Alert!
Warning! Please visit Page Status Information alert link
Drive SDK documentation
Click me
function createPublicFolder(folderName) {
var body = {
'title': folderName,
'mimeType': "application/vnd.google-apps.folder"
};
var request = gapi.client.drive.files.insert({
'resource': body
});
request.execute(function(resp) {
console.log('Folder...