This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns drunkard) | |
; Actor | |
(defprotocol Actor | |
(actor-action [this world])) | |
(defn actor-update [actor world] | |
(assoc-in world [:actors (:id actor)] actor)) | |
(defn actor-move [actor world x y] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 886643475ed685d3c00d69073365b56950100216 Mon Sep 17 00:00:00 2001 | |
From: Nikita Baksalyar <[email protected]> | |
Date: Mon, 18 Jun 2012 05:16:09 +0500 | |
Subject: Fix for multiple rows selection using 'Shift' and arrow keys on grids without 'multiSelect'. | |
--- | |
plugins/slick.rowselectionmodel.js | 4 ++++ | |
1 files changed, 4 insertions(+), 0 deletions(-) | |
diff --git a/plugins/slick.rowselectionmodel.js b/plugins/slick.rowselectionmodel.js |
NewerOlder