#Alexandra "Andie" Wheeler ##Seattle, WA LinkedIn | Email | Cell: 206-795-9273
###EXPERIENCE Sales Representative Olympic Athletic Club – Seattle, WA Sept. 2009 – Present (5 years, 9 months) Employee of the Year - 2012
SEATTLE ⫷ 503-784-8759 ⫸ [email protected]
I'm energetic, obsessed with details, and driven to challenge myself and make others’ lives better. For the past nine years I have been a physical therapist assistant, and now I am on a quest for my next craft: one that grants me the ability to bring joy to others while working with an inspiring team.
| class ApplicationController < ActionController::Base | |
| protect_from_forgery | |
| protected | |
| def current_user | |
| @current_user ||= User.find_by_id(session[:user_id]) if signed_in? | |
| end | |
| def signed_in? | |
| !! session[:user_id] |
| /** | |
| * Adds a method to the Y.Base prototype to handle events so that when a widget | |
| * or plugin becomes destroyed all events attached are detached. | |
| * | |
| * Requires Y.Lang & Y.Array | |
| */ | |
| YUI.add('event-handler', function(Y) { | |
| var YLang = Y.Lang, | |
| YArray = Y.Array; |
| YUI.add('paginator', function(Y) { | |
| Y.Test = Y.Base.create('test', Y.Widget, [Y.WidgetParent, Y.WidgetChild], { | |
| initializer: function (config) { ... } | |
| }, { | |
| CONTENT_TEMPLATE: '<ul></ul>', | |
| ATTRS: { ... } | |
| }); | |
| }, '0.1', {requires: ['widget', 'selector-css3', 'widget-parent', 'widget-child'] }); |