/*
 * Copyright (C) by Netcetera AG.
 * All rights reserved.
 *
 * The copyright to the computer program(s) herein is the property of
 * Netcetera AG, Switzerland.  The program(s) may be used and/or copied
 * only with the written permission of Netcetera AG or in accordance
 * with the terms and conditions stipulated in the agreement/contract
 * under which the program(s) have been supplied.
 *
 */

/**
 * If it is a mobile device, perform different actions.
 */

var Mobile = {
    
  init: function() {
    $("#config").css("display", "none");
    ConfigUI.setup = function() {};
  }
}