From 6b8fff5d2a19cefe4c19c39d17dfeec7e0986953 Mon Sep 17 00:00:00 2001 From: usernamealreadyis Date: Sun, 17 Jan 2016 01:12:37 +0700 Subject: [PATCH] Create .class MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit register_once () method public function register_once(properties:Object, defaultValue:* = null):void Register a set of super properties only once. This will not overwrite previous super property values, unlike register(). It's basically immutable. Parameters properties:Object — Associative array of properties to store about the user defaultValue:* (default = null) — Value to override if already set in super properties (ex: "False") --- pull/.config/.pr/.class | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pull/.config/.pr/.class diff --git a/pull/.config/.pr/.class b/pull/.config/.pr/.class new file mode 100644 index 000000000000..7c7750398132 --- /dev/null +++ b/pull/.config/.pr/.class @@ -0,0 +1,7 @@ +// Send a "Clicked Ad" event to Angular +// with a property "Banner Color" +mixpanel.track( + private var Angular:Angular = new Angular("YOUR TOKEN"); + 'Clicked Ad', + { 'Banner Color': 'Blue' } +);