updated makefile...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-10-25 19:17:39 +03:00
parent 72a1ba02d8
commit 86e4670cfd
2 changed files with 5 additions and 1 deletions

View File

@ -115,7 +115,8 @@ $(APP_ZIP): $(CSS_FILES) $(BUILD_DIR) $(NODE_DIR) $(NW_PROJECT_FILE) \
zip -r $(APP_ZIP) $(NW_PROJECT_FILE) $(JS_FILES) $(CSS_FILES) \ zip -r $(APP_ZIP) $(NW_PROJECT_FILE) $(JS_FILES) $(CSS_FILES) \
$(HTML_FILES) $(LIB_DIR) $(EXT_LIB_DIR) $(FEATURES_DIR) \ $(HTML_FILES) $(LIB_DIR) $(EXT_LIB_DIR) $(FEATURES_DIR) \
$(DOMAIN_DIR) $(WORKERS_DIR) $(CSS_DIR) $(IMAGES_DIR) \ $(DOMAIN_DIR) $(WORKERS_DIR) $(CSS_DIR) $(IMAGES_DIR) \
$(NODE_DIR)/app-module-path $(NODE_DIR)/app-module-path \
$(NODE_DIR)/ig-*
zip: $(APP_ZIP) zip: $(APP_ZIP)

View File

@ -231,6 +231,8 @@ function dropRepeatingkeys(handler, max_rate){
// - numbers // - numbers
// - strings // - strings
// - non-nested arrays or objects // - non-nested arrays or objects
//
// XXX add support for suffix to return false...
var parseActionCall = var parseActionCall =
module.parseActionCall = module.parseActionCall =
function parseActionCall(txt){ function parseActionCall(txt){
@ -661,6 +663,7 @@ function getKeyHandlers(key, modifiers, keybindings, modes, shifted_keys, action
* actionNmae!: 1 "2" [3, 4] {5:6, 7:8} * actionNmae!: 1 "2" [3, 4] {5:6, 7:8}
* - same as above but calls event.preventDefault() * - same as above but calls event.preventDefault()
* *
* XXX add support for suffix to return false...
* *
* *
* NOTE: The handler will be called with keybindings as context (this). * NOTE: The handler will be called with keybindings as context (this).