Skip to content

Commit

Permalink
Add circle control
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Shindyapin <[email protected]>
  • Loading branch information
license2e committed Feb 5, 2019
1 parent 2a0f84d commit 24020ac
Show file tree
Hide file tree
Showing 12 changed files with 12,338 additions and 228 deletions.
13 changes: 13 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
.vscode/
CHANGELOG.md
bench
ISSUE_TEMPLATE.md
build
docs
server.js
circle.yml
index.js
src
README.md
debug
node_modules
test
65 changes: 36 additions & 29 deletions dist/mapbox-gl-draw.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const runSetup = require('./src/setup');
const setupOptions = require('./src/options');
const setupAPI = require('./src/api');
const Constants = require('./src/constants');
const runSetup = require("./src/setup");
const setupOptions = require("./src/options");
const setupAPI = require("./src/api");
const Constants = require("./src/constants");

const setupDraw = function(options, api) {
options = setupOptions(options);
Expand All @@ -27,4 +27,4 @@ module.exports = function(options) {
setupDraw(options, this);
};

module.exports.modes = require('./src/modes');
module.exports.modes = require("./src/modes");
Loading

0 comments on commit 24020ac

Please sign in to comment.