var fDesc=new Array(); fDesc[0] = "SensorTag iOS Examples is an iOS source code sample project for Texas Instruments CC2650 SensorTag. This code demonstrates readings of sensors and displaying data, and is a simplified version of the SensorTag app on App Store. It is meant to be an easy-to-use example for getting started with iOS development on the SensorTag"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }