UNPKG

toloframework

Version:

Javascript/HTML/CSS compiler for Firefox OS or nodewebkit apps using modules in the nodejs style.

13 lines (10 loc) 274 B
"use strict"; var Binding = require("tfw.binding"); module.exports = function( view ) { Binding.defAction( view, "action" ); view.$.addEventListener( "keyup", function( evt ) { if( evt.key == 'Enter' || evt.kecCode == 13 ) { view.action = 1; } } ); };