X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/0214643f72c6aaa8e85eaba2ad27f2ca03ca6401..151e78ccc2757396286eb0be3ec3b368ba64b369:/modules/metadataEditor/transformations.js
diff --git a/modules/metadataEditor/transformations.js b/modules/metadataEditor/transformations.js
index a6fea3f..4b55488 100644
--- a/modules/metadataEditor/transformations.js
+++ b/modules/metadataEditor/transformations.js
@@ -1,22 +1,24 @@
-define(['libs/jquery-1.9.1.min'], function($) {
-
- return {
- getMetadata: function(xml) {
- var toret = {};
- $(xml).find('metadata').children().each(function() {
- var node = $(this);
- toret[this.nodeName.split(':')[1].toLowerCase()] = node.text();
- })
- return toret;
- },
- getXML: function(metadata) {
- var meta = $('\n');
- _.each(_.keys(metadata), function(key) {
- meta.append('\n\t' + metadata[key] + '');
- });
- meta.append('\n');
- return vkbeautify.xml(meta.html());
- }
- }
-
+define(['libs/jquery-1.9.1.min'], function($) {
+
+ 'use strict';
+
+ return {
+ getMetadata: function(xml) {
+ var toret = {};
+ $(xml).find('metadata').children().each(function() {
+ var node = $(this);
+ toret[this.nodeName.split(':')[1].toLowerCase()] = node.text();
+ });
+ return toret;
+ },
+ getXML: function(metadata) {
+ var meta = $('\n');
+ _.each(_.keys(metadata), function(key) {
+ meta.append('\n\t' + metadata[key] + '');
+ });
+ meta.append('\n');
+ return vkbeautify.xml(meta.html());
+ }
+ };
+
});
\ No newline at end of file