rjs -> webpack

This commit is contained in:
Keivan Beigi
2015-02-02 17:18:45 -08:00
parent 344f3d66ef
commit 428a1439e5
399 changed files with 11591 additions and 16139 deletions
+8 -17
View File
@@ -1,18 +1,9 @@
'use strict';
define(
[
'jquery'
], function ($) {
return {
var $ = require('jquery');
appInitializer: function () {
console.log('starting signalR');
$('body').tooltip({
selector: '[title]'
});
return this;
}
};
});
module.exports = {
appInitializer : function(){
console.log('starting signalR');
$('body').tooltip({selector : '[title]'});
return this;
}
};