Skip to content

Commit

Permalink
Dev: version 0.1.5.7 saving pars
Browse files Browse the repository at this point in the history
  • Loading branch information
smartinsightsfromdata committed Oct 26, 2015
1 parent ee2d7e8 commit 6d05ce2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
7 changes: 4 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
Package: rpivotTable
Title: Interface to pivottable library, offering a powerful pivot table to the R echosystem, knitr & shiny
Date: 2015-9-17
Version: 0.1.5.5
Version: 0.1.5.7
Authors@R: c(
person("Nicolas", "kruchten", role = c("aut", "cph"), comment = "pivottable library in inst/htmlwidgets/lib, http://nicolas.kruchten.com/pivottable/examples/"),
person("Enzo", "Martoglio", role = c("aut", "cre"), comment = "R interface", email = "enzo@smartinsightsfromdata.com")
person("Enzo", "Martoglio", role = c("aut", "cre"), comment = "R interface", email = "enzo@smartinsightsfromdata.com"),
person("Nicolas", "kruchten", role = c("ctb", "cph"), comment = "pivottable library in inst/htmlwidgets/lib, http://nicolas.kruchten.com/pivottable/examples/")
)
Author: Enzo Martoglio [aut, cre]
Maintainer: Enzo Martoglio <[email protected]>
Description: This package is a wrapper of PivotTable.js, a powerful open-source Pivot Table (aka Pivot Grid, Pivot Chart, Cross-Tab)
implementation in Javascript with drag'n'drop functionality written by Nicolas Kruchten.
Expand Down
6 changes: 5 additions & 1 deletion inst/htmlwidgets/rpivotTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ HTMLWidgets.widget({
x.params.sorters = eval("("+x.params.sorters[0]+")")
}
}


if (typeof x.params.onRefresh != "undefined") {
x.params.onRefresh = x.params.onRefresh[0];
}

$('#'+el.id).pivotUI(
x.data, x.params, true
);
Expand Down
1 change: 1 addition & 0 deletions tests/testthat.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ library(testthat)
library(rpivotTable)

test_check("rpivotTable")
# skip_on_cran("rpivotTable")
5 changes: 4 additions & 1 deletion vignettes/NEWS.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "NEWS"
author: "Enzo Martoglio"
date: "`r Sys.Date()`"
output: rmarkdown::html_vignette
output: rmarkdown::pdf_document
vignette: >
%\VignetteIndexEntry{Vignette Title}
%\VignetteEngine{knitr::rmarkdown}
Expand All @@ -14,6 +14,9 @@ knitr::opts_chunk$set(echo = TRUE)
```

#### News
Version 0.1.5.6

* adjusted DESCRIPTION for cran submission

Version 0.1.5.5:

Expand Down

0 comments on commit 6d05ce2

Please sign in to comment.