8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
|
"use strict"
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
$("#dash_username input").click(function(){
|
||
|
$("#dash_username button").show();
|
||
|
});
|
||
|
});
|