summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/group.js
blob: 7732edde1e74406c7f2b0057c5e3d4cb76e5c746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export default class Group {
  constructor() {
    this.groupPath = $('#group_path');
    this.groupName = $('#group_name');
    this.updateHandler = this.update.bind(this);
    this.resetHandler = this.reset.bind(this);
    if (this.groupName.val() === '') {
      this.groupPath.on('keyup', this.updateHandler);
      this.groupName.on('keydown', this.resetHandler);
    }
  }

  update() {
    this.groupName.val(this.groupPath.val());
  }

  reset() {
    this.groupPath.off('keyup', this.updateHandler);
    this.groupName.off('keydown', this.resetHandler);
  }
}