Files
vgstation13/nano/js/nano_state_default.js
Pieter-Jan Briers 56cbd6788d A path to fixing Nano loading issues. (#22584)
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.
2019-04-23 23:37:39 +01:00

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);
}