Skip to content

Commit

Permalink
renamed 'errors' module to 'app/errors'
Browse files Browse the repository at this point in the history
  • Loading branch information
Atul Varma committed Apr 27, 2010
1 parent b3b84a4 commit c0b9d14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/modules/app.js
Expand Up @@ -54,7 +54,7 @@ Require.modules["app/login"] = function(exports) {
};
};

Require.modules["errors"] = function(exports, require) {
Require.modules["app/errors"] = function(exports, require) {
var $ = require("jQuery");

var errors = $("#errors");
Expand Down Expand Up @@ -83,7 +83,7 @@ Require.modules["errors"] = function(exports, require) {
Require.modules["app/bugzilla-auth"] = function(exports, require) {
function onError(event) {
var xhr = event.target;
require("errors").log("bugzilla-api-error");
require("app/errors").log("bugzilla-api-error");
}

exports.create = function(Bugzilla) {
Expand Down

0 comments on commit c0b9d14

Please sign in to comment.