Coding style: spaces around operator
This commit is contained in:
parent
58d7005a42
commit
bf4b0c8162
@ -459,7 +459,7 @@ function PMA_showCurrentNavigation()
|
||||
.children('div:first')
|
||||
.children('a.expander');
|
||||
|
||||
if (! $expander.hasClass('loaded') ) {
|
||||
if (! $expander.hasClass('loaded')) {
|
||||
loadChildNodes($expander, function (data) {
|
||||
highlightTableOrView($tableContainer, $viewContainer, table);
|
||||
});
|
||||
|
||||
@ -154,14 +154,14 @@ function verificationsAfterFieldChange(urlField, multi_edit, theType)
|
||||
|
||||
//To generate the textbox that can take the salt
|
||||
var new_salt_box = "<br><input type=text name=salt[multi_edit][" + multi_edit + "][" + urlField + "]"
|
||||
+" id=salt_"+target.id+" placeholder='enter Salt'>";
|
||||
+ " id=salt_" + target.id + " placeholder='enter Salt'>";
|
||||
|
||||
//If AES_ENCRYPT is Selected then append the new textbox for salt
|
||||
if (target.value == "AES_ENCRYPT" && !($("#salt_"+target.id).length)) {
|
||||
if (target.value == "AES_ENCRYPT" && !($("#salt_" + target.id).length)) {
|
||||
$("input[name='fields[multi_edit][" + multi_edit + "][" + urlField + "]']").after(new_salt_box);
|
||||
} else {
|
||||
//The value of the select is no longer AES_ENCRYPT, remove the textbox for salt
|
||||
$("#salt_"+target.id).remove();
|
||||
$("#salt_" + target.id).remove();
|
||||
}
|
||||
|
||||
// Unchecks the corresponding "NULL" control
|
||||
|
||||
Loading…
Reference in New Issue
Block a user