/*\ title: $:/plugins/tiddlywiki/browser-storage/rawmarkup.js type: application/javascript module-type: library Startup code injected as raw markup \*/ (function() { // Need to initialise these because we run before bootprefix.js and boot.js $tw = window.$tw || Object.create(null); $tw.hooks = $tw.hooks || { names: {}}; // Hook the point in the startup process when the tiddlers have been loaded but plugins not unpacked var hookName = "th-boot-tiddlers-loaded"; if(Object.prototype.hasOwnProperty.call($tw.hooks.names,hookName)) { $tw.hooks.names[hookName].push(hookBootTiddlersLoaded); } else { $tw.hooks.names[hookName] = [hookBootTiddlersLoaded]; } // Load tiddlers from browser storage function hookBootTiddlersLoaded() { var url = window.location.protocol === "file:" ? window.location.pathname : ""; // Step through each browsder storage item for(var index=0; index