Lucas Stadler лет назад: 11
Родитель
Сommit
39307e8b3d
1 измененных файлов с 8 добавлено и 0 удалено
  1. 8 0
      js/babl/public/index.html

+ 8 - 0
js/babl/public/index.html

64
					el.src = match[0];
64
					el.src = match[0];
65
					return el;
65
					return el;
66
				}
66
				}
67
			}, {
68
				re: /https?:\/\/.*/,
69
				fn: function(match) {
70
					var el = document.createElement("a");
71
					el.href = match[0];
72
					el.textContent = match[0];
73
					return el;
74
				}
67
			}, { re: /.*/, fn: function(match) { return new Text(match[0]); }}];
75
			}, { re: /.*/, fn: function(match) { return new Text(match[0]); }}];
68
76
69
			function expandWord(word) {
77
			function expandWord(word) {