var nodebb_admin = (function(nodebb_admin) { nodebb_admin.config = undefined; nodebb_admin.prepare = function() { // Come back in 500ms if the config isn't ready yet if (nodebb_admin.config === undefined) { setTimeout(function() { nodebb_admin.prepare(); }, 500); return; } // Populate the fields on the page from the config var fields = document.querySelectorAll('#content [data-field]'), numFields = fields.length, saveBtn = document.getElementById('save'), x, key, inputType; for(x=0;x