Recommend this page to a friend! |
Classes of Scott Arciszewski | > | CMS Airship | > | src/Cabin/Bridge/public/crew_user_new.js | > | Download |
|
|
![]() |
$(document).ready(function() { $("#password").change(function() { var zx = zxcvbn($("#password").val()); passwordWarning(zx.feedback.warning, zx.score); }); // Work around webkit browsers' inability to style select boxes if ($.browser.webkit) { $("#users_groups").children("option").each(function () { $(this).html($(this).data('fullpath')); }); } }); |