Skip to content

Instantly share code, notes, and snippets.

View bender-rulez's full-sized avatar

Marc Bender bender-rulez

View GitHub Profile
@bender-rulez
bender-rulez / shortExample
Created March 30, 2015 10:26
Twitter like image dismiss Titanium
var fadeIntro = Titanium.UI.createAnimation();
fadeIntro.opacity = 1.0;
fadeIntro.duration = 250;
var fadeOutro = Titanium.UI.createAnimation();
fadeOutro.opacity = 0.0;
fadeOutro.duration = 250;
/**
* Appcelerator Titanium Mobile
* Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
#ifdef USE_TI_UIDASHBOARDVIEW
#import "TiUIDashboardView.h"
#import "TiUtils.h"