Ich habe eine große js-Datei, die ich in mehrere Namespaces aufteilen möchte.
-
Ist dies ein guter/schlechter Ansatz im Vergleich zu halten alles in einem Namespace?
-
Wie rufe ich in NAMESPACE_FIRST die Kartenerstellung auf?
var NAMESPACE_FIRST = { init:function() { alert("onload functions"); }, this.map:function() { this.length = 0; }, this.map.prototype.build:function(){ return this.length; } }; var NAMESPACE_SECOND = { upload:function() { //do something }, delete:function() { //do something } }; $(function () { NAMESPACE_FIRST.init(); });