13 lines
249 B
JavaScript
13 lines
249 B
JavaScript
$(function()
|
|
{
|
|
$("input[type='radio'][value='open']").parent().each(function()
|
|
{
|
|
this.title = openTip;
|
|
});
|
|
|
|
$("input[type='radio'][value='private']").parent().each(function()
|
|
{
|
|
this.title = privateTip;
|
|
});
|
|
})
|