mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 07:20:12 +01:00
This commit also introduces a new CSSEvents object that is used to abstract vendor specifics events related to CSS transitions and animations. Fixes #183. Fixes #179.
6 lines
150 B
JavaScript
6 lines
150 B
JavaScript
Blaze.registerHelper('currentCard', function() {
|
|
var cardId = Session.get('currentCard');
|
|
if (cardId) {
|
|
return Cards.findOne(cardId);
|
|
}
|
|
});
|