layout.js 266 Bytes
/*jslint nomen: true, plusplus: true, todo: true, white: true, browser: true, indent: 2 */

(function($) {
  'use strict';

  var adjust = function() {
  };

  $(document).ready(function() {
    $(window).resize(adjust);
    adjust();
  });
}(jQuery));