Skip to content

Commit 13e21dd

Browse files
committed
Updated README and main.js
1 parent 7d053fa commit 13e21dd

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ Palm Tree is a web based CRM application with Google Business Review email reque
115115
116116
* You're ready to go! You should now be able to acccess **Palm Tree**.
117117
* Feel free to use the provided email templates in the ``/templates`` directory under the **Email** menu, **Email Body**.
118+
* **NOTE:** You may need to allow the *port* you're using to send your emails in your *Firewall Settings* (defined in the `send_email.php` file - default `port 465`). Also, ensure your anti-virus software is not blocking **Palm Tree** from sending emails as well.
118119
119120
## License
120121
**Pam Tree** is released under the MIT license. [See LICENSE](LICENSE) for details.

js/main.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ function copy_to_clipboard(event, element) {
2222
window.alert("Text copied to clipboard");
2323
}
2424

25+
function resetOriginalData() {
26+
originalData = $("#data_table tbody tr").get();
27+
}
28+
2529
//Search for Customers
2630
const searchCustomers = () => {
2731
// Check if Counter is NOT Null
@@ -586,10 +590,6 @@ $(document).ready(function () {
586590
cust_id = null;
587591
});
588592

589-
function resetOriginalData() {
590-
originalData = $("#data_table tbody tr").get();
591-
}
592-
593593
$("#insertRow").on("click", function (event) {
594594
if (counter != null) {
595595
alert(

0 commit comments

Comments
 (0)