fincanvas
v1.4.1
Published
Openfin's HTML canvas++ wrapper.
Downloads
87
Readme
fincanvas
Openfin's HTML canvas++ wrapper.
v1.4.1 - Polyfill for
CustomEvent
for IE11.
v1.4.0 - The
event.details.identifier
object passed tofinKeyDown
andfinKeyUp
events now reflectsKeyboardEvent.key
rather than the now-deprecated (as of Chromium M53)KeyboardEvent.keyIdentifier
. The possible values in these two properties are similar but not identical. See the deprecated keyIdentifier list vs. the supported key list. (Note that neitherfin-canvas
itself norfin-hypergrid
seem to have any references todetails.identifier
.)
v1.3.0 - Removed gesture support; corrected clearRect dimensions on zoom.
v1.2.1 - Changed renderer "component" public interface method
_paint()
topaint()
(breaking change).
v1.1.1 - Increased double-click polling delay from 250 to 325 msecs and made it an option (
doubleClickDelay
). Eventfin-canvas-click
will no longer fire on the first click of a double click; it will only fire once the polling delay has elapsed and there was no second click.
v1.1.0 - For the fin-canvas-keydown and fin-canvas-keyup events' parameter
event.detail.char
, added a new value'BACKSPACE'
to refer to the backspace key. ('DELETE'
now refers to the actual delete key.) Also added new values'F1'
..'F12'
for the function keys.
Stand-alone versions
If you prefer to include directly, reference one or the other of the following browserified versions in a <script>
tag:
fincanvas.js
(unminified version with symbol map)fincanvas.min.js
(minified version without symbol map)
<script src='http://openfin.github.io/fincanvas/fincanvas.js'></script>
<script src='http://openfin.github.io/fincanvas/fincanvas.min.js'></script>