Code Review
/
ccsdk
/
features.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
8c5eb70a9c92da8f2d93d15aecc563cfddcb5aeb
[ccsdk/features.git]
/
1
(function( app ) {
2
3
var ui = app.ns("ui");
4
5
ui.Page = ui.AbstractWidget.extend({
6
show: function() {
7
this.el.show();
8
},
9
hide: function() {
10
this.el.hide();
11
}
12
});
13
14
})( this.app );