소스 검색

Show paragraph after "Summary" in popup info

dds
PaulStoffregen 10 년 전
부모
커밋
857ca16880
2개의 변경된 파일5개의 추가작업 그리고 6개의 파일을 삭제
  1. +3
    -4
      gui/list.html
  2. +2
    -2
      gui/red/ui/palette.js

+ 3
- 4
gui/list.html 파일 보기

@@ -17,7 +17,8 @@
<p>Receive 16 bit stereo audio from the
<a href="http://www.pjrc.com/store/teensy3_audio.html" target="_blank">audio shield</a>
or another I2S device.</p>
<h3>Audio Library Ports</h3>
<p align=center><img src="audioshield_inputs.jpg"></p>
<h3>Audio Connections</h3>
<table class=doc align=center cellpadding=3>
<tr class=top><th>Port</th><th>Function</th></tr>
<tr class=odd><td align=center>Out 0</td><td>Left Channel</td></tr>
@@ -27,10 +28,9 @@
<p>This object has no functions to call from the Arduino sketch. It
simply streams data from the I2S hardware to its 2 output ports.</p>
<h3>Hardware</h3>
<p align=center><img src="audioshield_inputs.jpg"></p>
<p align=center><img src="audioshield_backside.jpg"></p>
<p>The I2S signals are used in "master" mode, where Teensy creates
all 3 clock signals and controls all data timing.</p>

<table class=doc align=center cellpadding=3>
<tr class=top><th>Pin</th><th>Signal</th><th>Direction</th></tr>
<tr class=odd><td align=center>9</td><td>BCLK</td><td>Output</td></tr>
@@ -44,7 +44,6 @@
<h3>Notes</h3>
<p>Normally, this object is used with the Audio Shield, which
is controlled separately by the "sgtl5000" object.</p>
<p align=center><img src="audioshield_backside.jpg"></p>
</script>
<script type="text/x-red" data-template-name="AnalogInputI2S">
<div class="form-row">

+ 2
- 2
gui/red/ui/palette.js 파일 보기

@@ -87,7 +87,7 @@ RED.palette = (function() {
$("#palette-"+def.category).append(d);
d.onmousedown = function(e) { e.preventDefault(); }
$(d).popover({
title:d.type,
placement:"right",
@@ -95,7 +95,7 @@ RED.palette = (function() {
delay: { show: 750, hide: 50 },
html: true,
container:'body',
content: $(($("script[data-help-name|='"+nt+"']").html()||"<p>no information available</p>").trim())[0]
content: $(($("script[data-help-name|='"+nt+"']").html()||"<h2>empty</h2><p>no information available</p>").trim())[2] // TODO: how to use jQuery to always select the first <p> within the html?
});
$(d).click(function() {
var help = '<div class="node-help">'+($("script[data-help-name|='"+d.type+"']").html()||"")+"</div>";

Loading…
취소
저장