mirror of https://github.com/artf/grapesjs.git
255 changed files with 17243 additions and 18107 deletions
@ -1,7 +1,5 @@ |
|||
define(function () { |
|||
return { |
|||
module.exports = { |
|||
|
|||
'blocks': [], |
|||
|
|||
}; |
|||
}); |
|||
@ -1,11 +1,6 @@ |
|||
define(function(require, exports, module){ |
|||
'use strict'; |
|||
var Backbone = require('backbone'); |
|||
var Block = require('./Block'); |
|||
|
|||
module.exports = Backbone.Collection.extend({ |
|||
|
|||
model: Block, |
|||
|
|||
}); |
|||
}); |
|||
@ -1,13 +1,8 @@ |
|||
define(function(require, exports, module){ |
|||
'use strict'; |
|||
var Backbone = require('backbone'); |
|||
var Command = require('./Command'); |
|||
/** |
|||
* @class Commands |
|||
* */ |
|||
|
|||
module.exports = Backbone.Collection.extend({ |
|||
|
|||
model: Command, |
|||
|
|||
}); |
|||
}); |
|||
@ -1,9 +1,7 @@ |
|||
define(function () { |
|||
return { |
|||
module.exports = { |
|||
|
|||
devices: [], |
|||
|
|||
deviceLabel: 'Device', |
|||
|
|||
}; |
|||
}); |
|||
@ -1,8 +1,4 @@ |
|||
define(function(require, exports, module){ |
|||
'use strict'; |
|||
var Backbone = require('backbone'); |
|||
var ToolbarButton = require('./ToolbarButton'); |
|||
|
|||
module.exports = Backbone.Collection.extend({model: ToolbarButton}); |
|||
|
|||
}); |
|||
@ -1,8 +1,4 @@ |
|||
define(function(require, exports, module){ |
|||
'use strict'; |
|||
var Backbone = require('backbone'); |
|||
var ComponentView = require('./ComponentView'); |
|||
|
|||
module.exports = ComponentView.extend({ |
|||
}); |
|||
}); |
|||
module.exports = ComponentView.extend({}); |
|||
|
|||
@ -1,8 +1,4 @@ |
|||
define(function(require, exports, module){ |
|||
'use strict'; |
|||
var Backbone = require('backbone'); |
|||
var ComponentView = require('./ComponentView'); |
|||
|
|||
module.exports = ComponentView.extend({ |
|||
}); |
|||
}); |
|||
module.exports = ComponentView.extend({}); |
|||
|
|||
@ -1,11 +1,6 @@ |
|||
define(function(require, exports, module){ |
|||
'use strict'; |
|||
var Backbone = require('backbone'); |
|||
var ComponentView = require('./ComponentView'); |
|||
|
|||
module.exports = ComponentView.extend({ |
|||
|
|||
events: {}, |
|||
|
|||
}); |
|||
}); |
|||
@ -1,6 +1,3 @@ |
|||
define(function(require, exports, module){ |
|||
'use strict'; |
|||
var Backbone = require('backbone'); |
|||
|
|||
module.exports = Backbone.View.extend({}); |
|||
}); |
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue