mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 05:53:13 +00:00

Add asset dependencies Add field model Add field tests Add field app Add JS build Add end file blank line Adjust asset dependencies version Remove assets test libraries from build Remove unecessary comments Add end file blank line Fix indent
15 lines
252 B
JavaScript
15 lines
252 B
JavaScript
define([
|
|
'jquery',
|
|
'underscore',
|
|
'backbone',
|
|
'apps/admin/fields/router'
|
|
], function($, _, Backbone, Router) {
|
|
var initialize = function() {
|
|
Router.initialize();
|
|
};
|
|
|
|
return {
|
|
initialize: initialize
|
|
};
|
|
});
|