This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var rows = document.querySelectorAll("table div table > tbody tr"); | |
var records = []; | |
for (var i = 0; i < rows.length; i++) { | |
var row = rows[i]; | |
var cells = row.querySelectorAll("td"); | |
cells.forEach((o, j) => { | |
// Put in the forward rows data | |
if (o.rowSpan > 1) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/app/code/core/Mage/Core/Controller/Varien/Front.php b/app/code/core/Mage/Core/Controller/Varien/Front.php | |
index 75d0e17..890ba9d 100755 | |
--- a/app/code/core/Mage/Core/Controller/Varien/Front.php | |
+++ b/app/code/core/Mage/Core/Controller/Varien/Front.php | |
@@ -182,6 +182,12 @@ class Mage_Core_Controller_Varien_Front extends Varien_Object | |
Mage::dispatchEvent('controller_front_send_response_before', array('front'=>$this)); | |
Varien_Profiler::start('mage::app::dispatch::send_response'); | |
$this->getResponse()->sendResponse(); | |
+ //This function flushes all response data to the client and finishes the request. | |
+ // This allows for time consuming tasks to be performed without leaving the connection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Available Font Awesome icons | |
* | |
* Get all icons from a font-awesome.css file and list in json mode | |
* | |
* @author Alessandro Gubitosi <[email protected]> | |
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License, version 3 | |
*/ |