view src/app/notebook-feed/notebook-feed.component.html @ 205:b638c714bd1d

Implement pinch-zoom manually using touchevents, as HammerJS was preventing scrolling the page. This should also allow for smoother transitioning between gestures - needs testing on a device.
author Lucas Thompson <dev@lucas.im>
date Fri, 24 Mar 2017 15:27:07 +0000
parents d179cf7df697
children 1db0bb28688b
line wrap: on
line source

<template ngFor let-item [ngForOf]="analyses">
  <div [class.break]="item.isRoot">
      <ugly-analysis-item
        [timeline]="item.hasSharedTimeline ? sharedTimeline : undefined"
        [title]="item.title"
        [description]="item.description"
        [isActive]="rootAudioUri === item.rootAudioUri"
        [isRoot]="item.isRoot"></ugly-analysis-item>
  </div>
</template>