ethertoff
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

pad.html
text/html

Download raw (839 bytes)

{% extends "etherpad-lite/base.html" %}
{% load url from future %}

{% block title %}{{pad.display_slug}}{% endblock %}

{% block wrapper %}
  {% if error %}
  <div id="main">
    <div id="errors">
      <h2>Errors:</h2>
      <p>{{error}}</p>
    </div>
  </div>
  {% else %}
  <iframe src="{{link}}?userName={{uname}}" style="height: 95%; width: 100%; min-height: 500px; display: block"></iframe>

  <script type="text/javascript">
  /**
   * This little script is necessary for some browsers that don't respect the
   * height css attribute on iframes.
   */
  function resizeEtherpad() {
    height = jQuery(window).height()*94/100;
    jQuery('#wrapper iframe').height(height);
  }

  jQuery(document).ready( function() {
    resizeEtherpad()
    jQuery(window).resize(resizeEtherpad);
  });
  </script>
  {% endif %}

{% endblock %}