193:3144980ad4b8
Anton Shestakov <av6@dwimlabs.net>, Tue, 24 May 2016 14:45:47 +0800
index: scroll chat logs to bottom on switching This is not the most correct solution (although it works). It's better not to detach children and instead set "visibility: hidden" on them and then do a small css-related ritual dance so that they don't mess with each other. That way scroll positions would always be retained.

next change 211:4b03f725cb69
previous change 89:ee046c1af5c7

contrib/provision/roles/tram-im/tasks/appinstall.yml

Permissions: -rw-r--r--

Other formats: Feeds:
---
- name: Make sure project directory exists
file: path={{ dir }} state=directory
- name: Pull Tram-IM {{ revision }}
hg: repo={{ repo }} dest={{ dir }} revision={{ revision }}
when: ansible_virtualization_type != "virtualbox"
- name: Make sure vendor directory exists
file: path={{ dir }}/vendor state=directory
- name: Clone Strophe.js
git: repo=https://github.com/strophe/strophejs.git dest={{ dir }}/vendor/strophejs
- name: Clone Strophe.js plugins
git: repo=https://github.com/strophe/strophejs-plugins.git dest={{ dir }}/vendor/strophejs-plugins
- name: Download WebRTC adapter
get_url: url=https://webrtc.github.io/adapter/adapter-1.0.4.js dest={{ dir }}/vendor/webrtc-adapter-1.0.4.js
...