blob: 5dcda054becfaf304c2c0c6f3cf445a740ffe613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* 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');
}
});
})();
|