diff --git a/CHANGE.md b/CHANGE.md index ccea9027..858750b3 100644 --- a/CHANGE.md +++ b/CHANGE.md @@ -1,12 +1,14 @@ Version 3.0.3 ============= -**Date:** 05-Jun-2015 +**Date:** 15-Jun-2015 1. (enh #300): Add Lithuanian Translations. 2. (enh #301): Add Greek Translations. 3. (enh #310): Updated German Translations. 4. (enh #311): Better defaulting of Select2 `pluginOptions['width']`. 5. (enh #313): Add Czech translations. +6. (enh #317): Add missing spanish translations. +7. (enh #318): Fix post pjax setTimeout JS function. Version 3.0.2 ============= diff --git a/GridView.php b/GridView.php index 18af64fc..eaeb59ae 100644 --- a/GridView.php +++ b/GridView.php @@ -1238,7 +1238,7 @@ protected function beginPjax() $js .= ".on('pjax:timeout', function(e){e.preventDefault()})"; } $loadingCss = ArrayHelper::getvalue($this->pjaxSettings, 'loadingCssClass', 'kv-grid-loading'); - $postPjaxJs = "setTimeout({$this->_gridClientFunc}(), 2500);"; + $postPjaxJs = "setTimeout({$this->_gridClientFunc}, 2500);"; if ($loadingCss !== false) { $grid = 'jQuery("#' . $this->containerOptions['id'] . '")'; if ($loadingCss === true) {