forked from Jibo-Revival-Group/JiboOs
29 lines
978 B
JavaScript
29 lines
978 B
JavaScript
|
|
/**
|
||
|
|
* View class that serves as a container for the Eye.
|
||
|
|
*
|
||
|
|
* @class EyeView
|
||
|
|
* @extends jibo.face.views.View
|
||
|
|
* @memberof jibo.face.views
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Construct View
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* FOR OVERRIDE ONLY. DO NOT CALL.
|
||
|
|
*
|
||
|
|
* Adjust provided transition before calling inherited method.
|
||
|
|
* @method jibo.face.views.EyeView#open
|
||
|
|
* @param {Function} [callback] - Callback fired when close is complete, can also listen for View.OPENED event.
|
||
|
|
* @param {String} [transitionType] - This will be ignored as EyeView defines its own transition types.
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* FOR OVERRIDE ONLY. DO NOT CALL.
|
||
|
|
*
|
||
|
|
* We want to override the close transition type for EyeView
|
||
|
|
* @method jibo.face.views.EyeView#close
|
||
|
|
* @param {Function} [callback] - Callback fired when close is complete, can also listen for View.CLOSED event.
|
||
|
|
* @param {String} [transitionType] - This will be ignored as EyeView defines its own transition types.
|
||
|
|
*/
|