Skip to content

Commit

Permalink
Rename Plotlyjs -> PlotlyJS
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Forgy authored and sglyon committed Dec 22, 2015
1 parent dab8b58 commit 412f180
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Plotlyjs
# PlotlyJS

[![Build Status](https://travis-ci.org/spencerlyon2/Plotlyjs.jl.svg?branch=master)](https://travis-ci.org/spencerlyon2/Plotlyjs.jl)
[![Build Status](https://travis-ci.org/spencerlyon2/PlotlyJS.jl.svg?branch=master)](https://travis-ci.org/spencerlyon2/PlotlyJS.jl)

Julia interface to [Plotly.js](https://plot.ly/javascript/#layout-options) visualization library.
Julia interface to [plotly.js](https://plot.ly/javascript) visualization library.

Key features:

Expand Down
2 changes: 1 addition & 1 deletion examples/line_scatter.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module LineScatterExamples

using Plotlyjs
using PlotlyJS

function example1()
trace1 = scatter(;x=1:4, y=[10, 15, 13, 17], mode="markers")
Expand Down
2 changes: 1 addition & 1 deletion src/Plotlyjs.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Plotlyjs
module PlotlyJS

using JSON
using Blink
Expand Down
4 changes: 2 additions & 2 deletions test/traces.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module TestTraces

using Base.Test
include(joinpath(dirname(dirname(abspath(@__FILE__))), "src", "Plotlyjs.jl"))
typealias M Plotlyjs
include(joinpath(dirname(dirname(abspath(@__FILE__))), "src", "PlotlyJS.jl"))
typealias M PlotlyJS

gt = M.GenericTrace("scatter"; x=1:10, y=sin(1:10))
@test sort(collect(keys(gt.fields))) == [:x, :y]
Expand Down

0 comments on commit 412f180

Please sign in to comment.