You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
421 B
17 lines
421 B
$.ajaxSetup({ |
|
cache: false |
|
}); |
|
$(function() { |
|
}); |
|
|
|
$( window ).on( "load", function() |
|
{ |
|
// This resizes the peer access field to the placeholder width to better handle translations. |
|
$("#new_peer_access").each(function () { |
|
//var npa_width = $(this).attr('placeholder').length; |
|
//console.log('resize new_peer_access to: ['+npa_width+'].'); |
|
$(this).attr('size', $(this).attr('placeholder').length); |
|
}); |
|
|
|
}) |
|
|
|
|