mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Makes template loading time out instead of hang forever if necessary. This will make it easier to diagnose the problem causing load failures with Nano. Also made all of Nano's .js files use tabs.
15 lines
279 B
JavaScript
15 lines
279 B
JavaScript
|
|
NanoStateDefaultClass.inheritsFrom(NanoStateClass);
|
|
var NanoStateDefault = new NanoStateDefaultClass();
|
|
|
|
function NanoStateDefaultClass() {
|
|
|
|
this.key = 'default';
|
|
|
|
//this.parent.constructor.call(this);
|
|
|
|
this.key = this.key.toLowerCase();
|
|
|
|
NanoStateManager.addState(this);
|
|
}
|