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
Fixed typos (syntax errors)
  • Loading branch information
Tobias Haagen Michaelsen authored and jesperronn committed Oct 30, 2014
commit 8cb2bcfe360700e145c00b0a354fdbc12d4292c4
2 changes: 1 addition & 1 deletion public/res/plugins/couchdb/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ define([
], function(Plugin, couchdbProvider) {
return new Plugin({
providers: [couchdbProvider]
};
});
});
2 changes: 1 addition & 1 deletion public/res/plugins/download/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ define([
], function(Plugin, downloadProvider) {
return new Plugin({
providers: [downloadProvider]
};
});
});
2 changes: 1 addition & 1 deletion public/res/plugins/dropbox/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ define([
], function(Plugin, dropboxProvider) {
return new Plugin({
providers: [dropboxProvider]
};
});
});
2 changes: 1 addition & 1 deletion public/res/plugins/github/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ define([
], function(Plugin, gistProvider, githubProvider) {
return new Plugin({
providers: [gistProvider, githubProvider]
};
});
});
2 changes: 1 addition & 1 deletion public/res/plugins/google/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ define([
], function(Plugin, gdriveProvider, gdrivesecProvider, gdriveterProvider) {
return new Plugin({
providers: [gdriveProvider, gdrivesecProvider, gdriveterProvider]
};
});
});
2 changes: 1 addition & 1 deletion public/res/plugins/ssh/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ define([
], function(Plugin, sshProvider) {
return new Plugin({
providers: [sshProvider]
};
});
});
2 changes: 1 addition & 1 deletion public/res/synchronizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ define([
});

// Retrieve sync locations from storage
eventMgr.addListener("onPluginsLoaded", (function() {
eventMgr.addListener("onPluginsLoaded", function() {
var syncIndexMap = {};
_.each(fileSystem, function(fileDesc) {
utils.retrieveIndexArray(fileDesc.fileIndex + ".sync").forEach(function(syncIndex) {
Expand Down