Skip to content

Commit

Permalink
allow loading plugins from external cdn
Browse files Browse the repository at this point in the history
  • Loading branch information
nightwing committed Mar 22, 2018
1 parent 904c80f commit c4586ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/c9.login.client/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var auth = global.auth = function(options) {
function noop(callback) { callback(); }

if (onLoad) {
auth.parallel([
auth.parallel([].concat(
background,
auth.serial([
auth.parallel([
Expand All @@ -31,7 +31,7 @@ var auth = global.auth = function(options) {
]),
authorized,
])
])(done);
))(done);
}

function login(callback, errback) {
Expand Down

0 comments on commit c4586ac

Please sign in to comment.