Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Sep 24, 2021
1 parent 08b500f commit 60771ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

^doc$
^shiny$
^dash$
^docs$
^Meta$
^js$
Expand Down
3 changes: 2 additions & 1 deletion R/dash.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ upsetjsDash <- function(children = NULL, id = NULL, width = NULL, height = NULL)
"title", "description", "setName", "combinationName", "combinationNameAxisOffset", "barLabelOffset", "setNameAxisOffset",
"fontFamily", "fontSizes", "exportButtons", "className",
"theme", "selectionColor", "alternatingBackgroundColor", "color",
"hasSelectionColor", "textColor", "hoverHintColor", "notMemberColor", "valueTextColor", "strokeColor", "opacity", "hasSelectionOpacity", "filled"),
"hasSelectionColor", "textColor", "hoverHintColor", "notMemberColor", "valueTextColor", "strokeColor", "opacity", "hasSelectionOpacity", "filled"
),
package = "upsetjs"
)

Expand Down
4 changes: 2 additions & 2 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ isVennDiagram <- function(upsetjs) {
checkUpSetCommonArgument(upsetjs)
inherits(upsetjs, "upsetjs_venn") ||
inherits(upsetjs, "upsetjs_venn_proxy") ||
inherits(upsetjs, "upsetjs_venn_dash")
inherits(upsetjs, "upsetjs_venn_dash")
}

isKarnaughMap <- function(upsetjs) {
checkUpSetCommonArgument(upsetjs)
inherits(upsetjs, "upsetjs_kmap") ||
inherits(upsetjs, "upsetjs_kmap_proxy") ||
inherits(upsetjs, "upsetjs_kmap_dash")
inherits(upsetjs, "upsetjs_kmap_dash")
}

stopIfNotType <- function(name,
Expand Down

0 comments on commit 60771ae

Please sign in to comment.