Skip to content

Commit

Permalink
docs(demo): remove leap-motion-hand
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecasar committed Oct 6, 2015
1 parent 674e363 commit a78001c
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,25 +72,13 @@
is-device-attached="{{isDeviceAttached}}"
is-device-connected="{{isDeviceConnected}}"
is-device-streaming="{{isDeviceStreaming}}"
is-focus="{{isFocus}}"
>
is-focus="{{isFocus}}">
<template is="dom-repeat" items="{{frame.hands}}" as="hand">
<leap-motion-hand hand="{{hand}}" confidence="{{confidence}}" type="{{type}}">
<p>{{confidence}}</p>
<p>{{type}}</p>
</leap-motion-hand>
<p>{{hand.confidence}}</p>
<p>{{hand.type}}</p>
</template>
</leap-motion>

</template>
<script>
var frame = {
hands: [{
confidence: 0.23412,
type: 'right'
}]
};
</script>

</body>
</html>

0 comments on commit a78001c

Please sign in to comment.