Create User works
This commit is contained in:
@@ -86,12 +86,12 @@ $(function () {
|
||||
text: "<p class=\"loading\">Recent Logs...</p>",
|
||||
},
|
||||
style: {
|
||||
width: 320,
|
||||
width: 310,
|
||||
classes: 'qtip-light'
|
||||
},
|
||||
position: {
|
||||
my: "top right",
|
||||
at: "bottom left"
|
||||
at: "bottom right"
|
||||
},
|
||||
hide: {
|
||||
fixed: true,
|
||||
@@ -114,6 +114,19 @@ $(function () {
|
||||
}
|
||||
});
|
||||
|
||||
$(function() {
|
||||
// move checkbox elements into their labels
|
||||
$('label[for]').each(function() {
|
||||
var $label = $(this);
|
||||
var $for = $label.attr('for');
|
||||
var $input = $('input#' + $for + ':checkbox');
|
||||
if ($input.length > 0) {
|
||||
$input.prependTo($label);
|
||||
$label.addClass('checkbox');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$(function() {
|
||||
// Add active class to nav
|
||||
var idNavActiveRegex = { 'log-nav': /\/log/i, 'vehicle-nav': /\/vehicle/i };
|
||||
@@ -160,6 +173,12 @@ $(function() {
|
||||
}
|
||||
});
|
||||
|
||||
$(function () {
|
||||
$('input#Username').keyup(function (e) {
|
||||
$('input#Email').val($(this).val() + "@ethra.org");
|
||||
});
|
||||
});
|
||||
|
||||
$(function() {
|
||||
// add qtip
|
||||
$("a.qtip-modal").each(function () { bindQtipModal($(this)); });
|
||||
|
||||
Reference in New Issue
Block a user