www-thermferm/js/index.js

Wed, 14 Jan 2015 13:20:16 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 14 Jan 2015 13:20:16 +0100
changeset 305
fc2fae36f4ba
parent 256
8c52b09bdecc
child 693
3518c07737d8
permissions
-rw-r--r--

Better tab switching with a cookie

/*****************************************************************************
 * Copyright (C) 2014-2015
 *   
 * Michiel Broek <mbroek at mbse dot eu>
 *
 * This file is part of ThermFerm
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2, or (at your option) any
 * later version.
 *
 * ThermFerm is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with ThermFerm; see the file COPYING.  If not, write to the Free
 * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
 *****************************************************************************/


$(document).ready(function () {
    setInterval(function(){
      $.getJSON("getroom.php", function(data) {
        $("#room_temp").html(data.temperature);
        $("#room_hum").html(data.humidity);
      });
    }, 60000);
    // Create jqxTabs.
    var index = $.jqx.cookie.cookie("jqxTabs_jqxWidget");
    if (undefined == index) index = 0;
    $("#jqxTabs").jqxTabs({ selectedItem: index, width: 978, height: 428, position: 'top', theme: 'ui-redmond'});
    $("#jqxTabs").on('selected', function (event) {
      $.jqx.cookie.cookie("jqxTabs_jqxWidget", event.args.item);
    });
    $("#maintenance").jqxButton({ width: 150, height: 25, theme: 'ui-redmond' });
});

mercurial