Skip to content

Commit

Permalink
Added tickRenderer JS registration support
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Demin committed Apr 20, 2016
1 parent 1152603 commit d98eca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JqPlot.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public function registerRenderersRecursively($data)
{
// Looking for renderers
foreach ($data as $k => $v) {
if ($k == 'renderer') {
if ($k == 'renderer' || $k == 'tickRenderer') {
$this->registerRendererJsFile($v);
} elseif (is_array($v)) {
$this->registerRenderersRecursively($v);
Expand Down

0 comments on commit d98eca9

Please sign in to comment.