You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
457 B
22 lines
457 B
6 years ago
|
class ControllerCommonHome extends Controller {
|
||
|
index() {
|
||
|
console.log('mama');
|
||
|
|
||
|
console.log($('body').append('<h1>TESTE</h1>'));
|
||
|
|
||
|
//console.log(this.registry);
|
||
|
|
||
|
//console.log(this.registry.get('database').teste());
|
||
|
console.log(this.database.teste());
|
||
|
|
||
|
this.data['header'] = "TESTE";
|
||
|
|
||
|
console.log(this.config.has("URL"));
|
||
|
|
||
|
this.out();
|
||
|
}
|
||
|
|
||
|
uma(){
|
||
|
console.log("UUUUU");
|
||
|
}
|
||
|
}
|