thingspeak/app/assets/javascripts/channels.js

21 lines
399 B
JavaScript
Raw Normal View History

$(function () {
$("[id^=showsite]").each (
function() {
var element = this;
$(element).shorten(
{
width:235,
tooltip:true,
tail: '...'
});
});
$("div.progressbar").each (
function () {
var element = this;
$(element).progressbar(
{
value: parseInt($(element).attr("rel"))
});
});
});