function whenImportsReady()

in gr-editor/gr-editor.js [20:26]


function whenImportsReady(cb) {
  if (window.HTMLImports) {
    HTMLImports.whenReady(cb);
  } else {
    cb();
  }
}