diff --git fullcalendar.module fullcalendar.module
index e092fa2..5d200dd 100644
--- fullcalendar.module
+++ fullcalendar.module
@@ -157,6 +157,8 @@
  * Pass settings to JavaScript.
  */
 function template_preprocess_views_view_fullcalendar(&$vars) {
+  global $language;
+
   $settings = array(
     'defaultView' => $vars['options']['display']['fc_view'],
     'firstDay' => $vars['options']['display']['fc_firstday'],
@@ -180,6 +182,7 @@
     'weekString' => t('Week'),
     'monthString' => t('Month'),
     'todayString' => t('Today'),
+    'isRTL' => $language->direction,
   );
   drupal_add_js(array('fullcalendar' => $settings), 'setting');
   drupal_add_js(drupal_get_path('module', 'fullcalendar') . '/fullcalendar.views.js', 'module');
diff --git fullcalendar.views.js fullcalendar.views.js
index c305e9f..760e2e2 100644
--- fullcalendar.views.js
+++ fullcalendar.views.js
@@ -11,6 +11,7 @@
       center: Drupal.settings.fullcalendar.center,
       right: Drupal.settings.fullcalendar.right
     },
+    isRTL : Drupal.settings.fullcalendar.isRTL === '1',
     eventClick: function(calEvent, jsEvent, view) {
       if (Drupal.settings.fullcalendar.colorbox) {
       // Open in colorbox if exists, else open in new window.
