update with changes from Production branch
This commit is contained in:
21
app/assets/javascripts/channels.js
Normal file
21
app/assets/javascripts/channels.js
Normal file
@ -0,0 +1,21 @@
|
||||
$(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"))
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user