Changeset 678
- Timestamp:
- 09/07/06 12:51:25 (2 years ago)
- Location:
- Branches/2.1/core/js
- Files:
-
- 4 modified
-
Animator.js (modified) (1 diff)
-
Macros.js (modified) (6 diffs)
-
Tiddler.js (modified) (1 diff)
-
main.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Branches/2.1/core/js/Animator.js
r110 r678 6 6 { 7 7 this.running = 0; // Incremented at start of each animation, decremented afterwards. If zero, the interval timer is disabled 8 this.timerID ; // ID of the timer used for animating8 this.timerID = 0; // ID of the timer used for animating 9 9 this.animations = []; // List of animations in progress 10 10 return this; -
Branches/2.1/core/js/Macros.js
r677 r678 31 31 for (var t = 0; t < results.length; t++) 32 32 { 33 theListItem = document.createElement("li")33 var theListItem = document.createElement("li") 34 34 theList.appendChild(theListItem); 35 35 if(typeof results[t] == "string") … … 174 174 config.macros.tiddler.handler = function(place,macroName,params,wikifier,paramString,tiddler) 175 175 { 176 varparams = paramString.parseParams("name",null,true,false,true);176 params = paramString.parseParams("name",null,true,false,true); 177 177 var names = params[0]["name"]; 178 178 var tiddlerName = names[0]; … … 413 413 if(!readOnly) 414 414 { 415 varparams = paramString.parseParams("anon",null,true,false,false);415 params = paramString.parseParams("anon",null,true,false,false); 416 416 var title = params[1] && params[1].name == "anon" ? params[1].value : this.title; 417 417 title = getParam(params,"title",title); … … 424 424 if(!readOnly) 425 425 { 426 varparams = paramString.parseParams("anon",null,true,false,false);426 params = paramString.parseParams("anon",null,true,false,false); 427 427 var now = new Date(); 428 428 var title = params[1] && params[1].name == "anon" ? params[1].value : ""; … … 892 892 createTiddlyElement(step,"br"); 893 893 createTiddlyText(step,this.step1promptFeeds); 894 feeds = this.getFeeds([{caption: this.step1feedPrompt, name: ""}]);894 var feeds = this.getFeeds([{caption: this.step1feedPrompt, name: ""}]); 895 895 createTiddlyDropDown(step,this.onFeedChange,feeds); 896 896 createTiddlyElement(step,"br"); … … 923 923 { 924 924 var importer = findRelated(this,"importTiddler","className","parentNode"); 925 url = importer.inputBox.value;925 var url = importer.inputBox.value; 926 926 var cutoff = findRelated(importer.firstChild,"step2","className","nextSibling"); 927 927 while(cutoff) -
Branches/2.1/core/js/Tiddler.js
r586 r678 108 108 var preRegExp = new RegExp(config.textPrimitives.unWikiLink+"|"+config.textPrimitives.anyLetter,"mg"); 109 109 preRegExp.lastIndex = formatMatch.index-1; 110 preMatch = preRegExp.exec(this.text);110 var preMatch = preRegExp.exec(this.text); 111 111 if(preMatch.index != formatMatch.index-1) 112 112 this.links.pushUnique(formatMatch[1]); -
Branches/2.1/core/js/main.js
r574 r678 75 75 { 76 76 if(safeMode) 77 return ;77 return false; 78 78 var configTiddlers = store.getTaggedTiddlers("systemConfig"); 79 79 installedPlugins = [];
