mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 20:13:28 +00:00
Add global register feature
Tweak admin field app Fix typo Tweaks Fix typo
This commit is contained in:

committed by
Romain Neutron

parent
9a9235a15e
commit
0539db7598
13
www/scripts/apps/admin/fields/errors/error.js
Normal file
13
www/scripts/apps/admin/fields/errors/error.js
Normal file
@@ -0,0 +1,13 @@
|
||||
define([
|
||||
"jquery",
|
||||
"underscore"
|
||||
], function($, _) {
|
||||
|
||||
var Error = function (model, fieldId, message) {
|
||||
this.model = model;
|
||||
this.fieldId = fieldId;
|
||||
this.message = message;
|
||||
};
|
||||
|
||||
return Error;
|
||||
});
|
Reference in New Issue
Block a user