1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

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 -13
View File
@@ -1,14 +1,9 @@
'use strict';
define(
[
'backbone.deepmodel'
], function (DeepModel) {
return DeepModel.DeepModel.extend({
defaults: {
id : null,
name : '',
cutoff: null
}
});
});
var DeepModel = require('backbone.deepmodel');
module.exports = DeepModel.DeepModel.extend({
defaults : {
id : null,
name : '',
cutoff : null
}
});