/** * Created by markop on 9/29/15. */ (function(){ codeq.globalStateMachine.register('profile',{ 'enter': function(){ $("#screen_profile").css('display', ''); $('#disabled').css('display', 'none'); }, 'exit' : function(){ $("#screen_profile").css('display', 'none'); } }); })();