added jshint

This commit is contained in:
kayone
2013-11-10 20:09:11 -08:00
parent 9536c6c1bb
commit 47d924cff3
30 changed files with 177 additions and 127 deletions

View File

@@ -1,9 +1,12 @@
define(function () {
define(
[
'jquery'
], function ($) {
'use strict';
return {
load: function (name, parentRequire, onload, config) {
if(config.isBuild){
if (config.isBuild) {
return onload();
}
@@ -19,7 +22,7 @@ define(function () {
xhr : xhr,
status: status,
error : error});
});
});
}
};
});