/**
 *  Admin list order
 *  Strong Testimonials
 */

// set cell widths to prevent shrinkage
function setCellWidths() {
  jQuery('td, th', 'table.posts').each(function () {
    var cell = jQuery(this);
    cell.width(cell.width());
  });
};

// reset cell widths
function resetCellWidths(reset) {
  jQuery('td, th', 'table.posts').each(function () {
    var cell = jQuery(this);
    cell.width('');
  }).promise().done(setCellWidths);
};

// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
// Thanks http://davidwalsh.name/javascript-debounce-function
function debounce(func, wait, immediate) {
  var timeout;
  return function () {
    var context = this, args = arguments;
    var later = function () {
      timeout = null;
      if (!immediate) func.apply(context, args);
    };
    var callNow = immediate && !timeout;
    clearTimeout(timeout);
    timeout = setTimeout(later, wait);
    if (callNow) func.apply(context, args);
  };
};

// window resize listener
var myEfficientFn = debounce(resetCellWidths, 100);
window.addEventListener('resize', myEfficientFn);


jQuery(document).ready(function ($) {

  $.fn.strongSort = function (options) {

    var $this = this;
    var $handles = $(options.handles);

    var toggleReorder = function () {
      $this.sortable("enable");
      $handles.show();
    }

    this.sortable({
      disabled: true, // initially disabled
      items: 'tr',
      axis: 'y',
      handle: options.handles,
      forcePlaceholderSize: true,
      placeholder: "sortable-placeholder",
      start: function (e, ui) {
        // set height of placeholder to match current dragged element
        ui.placeholder.height(ui.helper.height());
        ui.helper.css("cursor", "move");
      },
      helper: function (e, ui) {
        var $originals = ui.children();
        var $helper = ui.clone();
        $helper.children().each(function (index) {
          // set helper cell sizes to match the original sizes
          $(this).width($originals.eq(index).width());
        });
        return $helper;
      },
      update: function (e, ui) {
        ui.item.find(".column-handle").addClass("refresh");
        $.post(ajaxurl, {
            action: 'st-update-menu-order',
            posts: $('#the-list').sortable('serialize'),
            order: wpmtstOrderHelper
          },
          function (data) {
            // update menu order shown
            var $orders = $(".menu-order");
            var obj = JSON.parse(data);
            var orderArray = $.map(obj, function (val, i) {
              $orders.eq(i).html(val);
            });
          })
          .done(function () {
            // update zebra striping
            $("#the-list").find("tr:even").removeClass("alternate");
            ui.item.effect('highlight', {}, 2000);
            ui.item.find(".column-handle").removeClass("refresh");
          })

      }
    });

    toggleReorder();

    return this;
  }

  // Init

  setCellWidths();

  $("#screen-meta").on("change", ".metabox-prefs", resetCellWidths);

  $("#the-list").strongSort({
    handles: 'td.column-handle'
  });

  $("td.column-handle").on( 'mouseenter mouseleave',
    function () {
      $(this).closest("tr").addClass("reorder-hover");
    },
    function () {
      $(this).closest("tr").removeClass("reorder-hover");
    }
  );

});
<?xml version="1.0" encoding="UTF-8"?>
<!-- This sitemap was dynamically generated on September 10, 2026 at 12:24 am by All in One SEO - the original SEO plugin for WordPress. -->

<?xml-stylesheet type="text/xsl" href="https://hojozat.net/default.xsl"?>

<rss version="2.0">
	<channel>
		<title>Hojozat</title>
		<link><![CDATA[https://hojozat.net]]></link>
		<description><![CDATA[Hojozat]]></description>
		<lastBuildDate><![CDATA[2026-08-24T11:46:13+00:00]]></lastBuildDate>
		<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
		<ttl>0</ttl>

		<item>
			<guid><![CDATA[https://hojozat.net/2021/11/30/hello-world/]]></guid>
			<link><![CDATA[https://hojozat.net/2021/11/30/hello-world/]]></link>
			<title>Hello world!</title>
			<pubDate><![CDATA[2026-08-24T11:46:13+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/home/]]></guid>
			<link><![CDATA[https://hojozat.net/home/]]></link>
			<title>Home</title>
			<pubDate><![CDATA[2023-02-07T07:47:40+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/contact-us/]]></guid>
			<link><![CDATA[https://hojozat.net/contact-us/]]></link>
			<title>Contact Us</title>
			<pubDate><![CDATA[2022-11-14T06:29:06+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/careers/]]></guid>
			<link><![CDATA[https://hojozat.net/careers/]]></link>
			<title>Careers</title>
			<pubDate><![CDATA[2022-05-01T11:39:15+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/franchisee-lead/]]></guid>
			<link><![CDATA[https://hojozat.net/franchisee-lead/]]></link>
			<title>franchisee-lead</title>
			<pubDate><![CDATA[2022-01-25T15:14:20+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/become-a-partner/]]></guid>
			<link><![CDATA[https://hojozat.net/become-a-partner/]]></link>
			<title>become a partner</title>
			<pubDate><![CDATA[2022-01-19T10:01:38+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/our-products/free-b2b-registration/]]></guid>
			<link><![CDATA[https://hojozat.net/our-products/free-b2b-registration/]]></link>
			<title>Free B2B Registration</title>
			<pubDate><![CDATA[2022-01-11T13:39:50+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/our-products/]]></guid>
			<link><![CDATA[https://hojozat.net/our-products/]]></link>
			<title>Our Products</title>
			<pubDate><![CDATA[2021-12-30T17:28:44+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/login/]]></guid>
			<link><![CDATA[https://hojozat.net/login/]]></link>
			<title>login</title>
			<pubDate><![CDATA[2021-12-30T12:42:58+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/ts-f1/]]></guid>
			<link><![CDATA[https://hojozat.net/ts-f1/]]></link>
			<title>TS-F1</title>
			<pubDate><![CDATA[2021-12-19T11:54:18+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/ts-consolidator/]]></guid>
			<link><![CDATA[https://hojozat.net/ts-consolidator/]]></link>
			<title>TS – Consolidator</title>
			<pubDate><![CDATA[2021-12-19T11:54:09+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/white-label/]]></guid>
			<link><![CDATA[https://hojozat.net/white-label/]]></link>
			<title>White Label</title>
			<pubDate><![CDATA[2021-12-19T11:54:00+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/b2b-ts-fox-platform/]]></guid>
			<link><![CDATA[https://hojozat.net/b2b-ts-fox-platform/]]></link>
			<title>B2B TS-FOX Platform</title>
			<pubDate><![CDATA[2021-12-19T11:53:17+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/b2c-portal-ota/]]></guid>
			<link><![CDATA[https://hojozat.net/b2c-portal-ota/]]></link>
			<title>B2C Portal &#8211; OTA</title>
			<pubDate><![CDATA[2021-12-19T11:52:35+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/ts-gsa/]]></guid>
			<link><![CDATA[https://hojozat.net/ts-gsa/]]></link>
			<title>ts-GSA</title>
			<pubDate><![CDATA[2021-12-08T22:19:50+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/ts-sky/]]></guid>
			<link><![CDATA[https://hojozat.net/ts-sky/]]></link>
			<title>TS-SKY</title>
			<pubDate><![CDATA[2021-12-08T22:19:22+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/charter-flight-ts-flight-crs/]]></guid>
			<link><![CDATA[https://hojozat.net/charter-flight-ts-flight-crs/]]></link>
			<title>Charter Flight – TS Flight CRS</title>
			<pubDate><![CDATA[2021-12-08T22:18:46+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/ts-crs-extranet/]]></guid>
			<link><![CDATA[https://hojozat.net/ts-crs-extranet/]]></link>
			<title>TS – CRS -Extranet</title>
			<pubDate><![CDATA[2021-12-08T22:18:04+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/mobile-applications/]]></guid>
			<link><![CDATA[https://hojozat.net/mobile-applications/]]></link>
			<title>Mobile Applications</title>
			<pubDate><![CDATA[2021-12-08T22:17:30+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/rest-api/]]></guid>
			<link><![CDATA[https://hojozat.net/rest-api/]]></link>
			<title>Rest API</title>
			<pubDate><![CDATA[2021-12-08T22:16:53+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/ts-lite/]]></guid>
			<link><![CDATA[https://hojozat.net/ts-lite/]]></link>
			<title>TS-LITE</title>
			<pubDate><![CDATA[2021-12-08T22:11:50+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/job-apply/]]></guid>
			<link><![CDATA[https://hojozat.net/job-apply/]]></link>
			<title>job apply</title>
			<pubDate><![CDATA[2021-12-08T21:58:41+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/ts-business/]]></guid>
			<link><![CDATA[https://hojozat.net/ts-business/]]></link>
			<title>TS &#8211; Business</title>
			<pubDate><![CDATA[2021-12-06T10:37:51+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/terms-of-use/]]></guid>
			<link><![CDATA[https://hojozat.net/terms-of-use/]]></link>
			<title>Terms of use</title>
			<pubDate><![CDATA[2021-12-05T15:33:36+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/privacy-policy/]]></guid>
			<link><![CDATA[https://hojozat.net/privacy-policy/]]></link>
			<title>Privacy Policy</title>
			<pubDate><![CDATA[2021-12-05T15:32:50+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/our-culture-and-values/]]></guid>
			<link><![CDATA[https://hojozat.net/our-culture-and-values/]]></link>
			<title>our culture and values</title>
			<pubDate><![CDATA[2021-12-05T15:29:59+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/our-tech/]]></guid>
			<link><![CDATA[https://hojozat.net/our-tech/]]></link>
			<title>Our Tech</title>
			<pubDate><![CDATA[2021-12-05T15:28:59+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/why-us/]]></guid>
			<link><![CDATA[https://hojozat.net/why-us/]]></link>
			<title>Why us</title>
			<pubDate><![CDATA[2021-12-05T15:27:49+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/about-us/]]></guid>
			<link><![CDATA[https://hojozat.net/about-us/]]></link>
			<title>About Us</title>
			<pubDate><![CDATA[2021-12-05T15:27:05+00:00]]></pubDate>
		</item>
					<item>
			<guid><![CDATA[https://hojozat.net/services/]]></guid>
			<link><![CDATA[https://hojozat.net/services/]]></link>
			<title>Services</title>
			<pubDate><![CDATA[2021-12-01T16:36:50+00:00]]></pubDate>
		</item>
				</channel>
</rss>
