Skip to content

Commit

Permalink
Changed error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
seedofjoy committed Mar 14, 2015
1 parent 8c66f53 commit 6561171
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/app.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RocketLauncher = function (apps) {
document.addEventListener('DOMContentLoaded', function () {

if (!apps) {
console.error('Binder: No applications found!');
console.error('RocketLauncher: No applications found!');
return;
}

Expand All @@ -31,7 +31,7 @@ RocketLauncher = function (apps) {
opts = {};

if (!(app_name in apps)) {
console.error('Module ' + app_name + ' not found.');
console.error('RocketLauncher: Application ' + app_name + ' not found.');
return;
}

Expand Down
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RocketLauncher = function (apps) {
document.addEventListener('DOMContentLoaded', function () {

if (!apps) {
console.error('Binder: No applications found!');
console.error('RocketLauncher: No applications found!');
return;
}

Expand All @@ -15,7 +15,7 @@ RocketLauncher = function (apps) {
opts = {};

if (!(app_name in apps)) {
console.error('Module ' + app_name + ' not found.');
console.error('RocketLauncher: Application ' + app_name + ' not found.');
return;
}

Expand Down

0 comments on commit 6561171

Please sign in to comment.