Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stackedit modularization: Plugins folders #595

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added plugins folder to jshint task
  • Loading branch information
Tobias Haagen Michaelsen authored and jesperronn committed Oct 30, 2014
commit 8a98ac1c54e2206e5f03a017fa183074e8f57b53
1 change: 1 addition & 0 deletions Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ gulp.task('jshint', function() {
'./public/res/classes/**/*.js',
'./public/res/extensions/**/*.js',
'./public/res/helpers/**/*.js',
'./public/res/plugins/**/*.js',
'./public/res/providers/**/*.js',
'./public/res/*.js'
])
Expand Down
10 changes: 2 additions & 8 deletions public/res/sharing.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,8 @@ define([
"constants",
"utils",
"eventMgr",
"fileMgr",
"classes/AsyncTask",
"classes/Provider",
"providers/karnovProvider",
"providers/couchdbProvider",
"providers/downloadProvider",
"providers/gistProvider"
], function($, _, constants, utils, eventMgr, fileMgr, AsyncTask, Provider) {
"fileMgr"
], function($, _, constants, utils, eventMgr, fileMgr) {

var sharing = {};

Expand Down