recusive imports

pull/1/head
d11e9 9 years ago
parent 488537ad17
commit 47c7f112ac
  1. 5
      index.html

@ -339,7 +339,10 @@ THE SOFTWARE.
matches.push( match[0] )
}
}
for (var i in imports) { input = input.replace( matches[i], window.localStorage.getItem( imports[i] ) ); }
for (var i in imports) {
imported = includeLocalImports( window.localStorage.getItem( imports[i] ) )
input = input.replace( matches[i], imported );
}
return input;
}

Loading…
Cancel
Save