From 0b0fa0f65a4ee77b4d181444281a23b4941c3e33 Mon Sep 17 00:00:00 2001
From: Jason Quense <monastic.panic@gmail.com>
Date: Sat, 24 Oct 2015 10:20:47 +0700
Subject: [PATCH] [fixed] prevent selection when clicking show more

---
 src/Month.jsx | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/Month.jsx b/src/Month.jsx
index c5a0974cf..50110a04a 100644
--- a/src/Month.jsx
+++ b/src/Month.jsx
@@ -351,6 +351,9 @@ let MonthView = React.createClass({
   _showMore(events, date, row, slot){
     let cell = findDOMNode(this._bgRows[row]).children[slot];
 
+    //cancel any pending selections so only the event click goes through.
+    this.clearSelection()
+    
     if (this.props.popup) {
       let position = getPosition(cell, findDOMNode(this));