editor: fix requirejs paths so that test will work again
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 14 Jul 2014 15:01:05 +0000 (17:01 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 14 Jul 2014 15:01:05 +0000 (17:01 +0200)
Paths relative to the current directory that contain file extension
don't normally work with requirejs unless used together with Karma.js
- here on the other hand they are required.

Until this get resolved one way or another, requiring modules in files
that are used both in production and by tests must not use paths relative
to the current dir.

src/editor/plugins/core/core.js
src/editor/plugins/core/metadataEditor/action.js
src/editor/plugins/core/metadataEditor/metadataEditor.js

index 9445682..509d743 100644 (file)
@@ -11,7 +11,7 @@ var _ = require('libs/underscore'),
     plugin = {name: 'core', actions: [], canvas: {}, documentExtension: {textNode: {}}},
     Dialog = require('views/dialog/dialog'),
     canvasElements = require('plugins/core/canvasElements'),
-    metadataEditor = require('./metadataEditor/metadataEditor');
+    metadataEditor = require('plugins/core/metadataEditor/metadataEditor');
 
 
 
index 9184eda..cb3d605 100644 (file)
@@ -4,7 +4,7 @@ define(function(require) {
 /* globals gettext */
 
 var Dialog = require('views/dialog/dialog'),
-    View = require('./view');
+    View = require('plugins/core/metadataEditor/view');
 
 
 return function(ctx) {
index aa0277b..198160e 100644 (file)
@@ -2,7 +2,7 @@ define(function(require) {
     
 'use strict';
 
-var action = require('./action');
+var action = require('plugins/core/metadataEditor/action');
 
 return {
     action: action