mirror of
https://github.com/itflow-org/itflow
synced 2026-09-18 12:45:13 +00:00
Fixed Side nav titles, Fixed ajax on bootstrap modals, fixed pagination all regressions
This commit is contained in:
@@ -444,7 +444,7 @@ ob_start();
|
||||
var notes = document.getElementById("assetNotes").value;
|
||||
|
||||
// Send a POST request to ajax.php as ajax.php with data contact_set_notes=true, contact_id=NUM, notes=NOTES
|
||||
jQuery.post(
|
||||
itflowPost(
|
||||
"ajax.php",
|
||||
{
|
||||
asset_set_notes: 'TRUE',
|
||||
|
||||
@@ -375,7 +375,7 @@ ob_start();
|
||||
function checkClientDuplicate() {
|
||||
var name = document.getElementById("client_name").value;
|
||||
//Send a GET request to ajax.php as ajax.php?client_duplicate_check=true&name=NAME
|
||||
jQuery.get(
|
||||
itflowGet(
|
||||
"ajax.php",
|
||||
{client_duplicate_check: 'true', name: name},
|
||||
function(data) {
|
||||
|
||||
@@ -285,7 +285,7 @@ ob_start();
|
||||
<script>
|
||||
|
||||
function generatePassword() {
|
||||
jQuery.get(
|
||||
itflowGet(
|
||||
"ajax.php", {
|
||||
get_readable_pass: 'true'
|
||||
},
|
||||
@@ -321,7 +321,7 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||
function checkContactEmail() {
|
||||
var email = document.getElementById("contact_email").value;
|
||||
//Send a GET request to ajax.php as ajax.php?contact_email_check=true&email=email
|
||||
jQuery.get(
|
||||
itflowGet(
|
||||
"ajax.php",
|
||||
{contact_email_check: 'true', email: email},
|
||||
function(data) {
|
||||
|
||||
@@ -325,7 +325,7 @@ ob_start();
|
||||
<script>
|
||||
|
||||
function generatePassword() {
|
||||
jQuery.get(
|
||||
itflowGet(
|
||||
"ajax.php", {
|
||||
get_readable_pass: 'true'
|
||||
},
|
||||
|
||||
@@ -185,7 +185,7 @@ ob_start();
|
||||
function checkApexDomain() {
|
||||
var domain = document.getElementById("domain_name").value;
|
||||
//Send a GET request to ajax.php as ajax.php?apex_domain_check=true&domain=domain
|
||||
jQuery.get(
|
||||
itflowGet(
|
||||
"ajax.php",
|
||||
{apex_domain_check: 'true', domain: domain},
|
||||
function(data) {
|
||||
|
||||
Reference in New Issue
Block a user