diff options
| author | LV-426 <lv-426@taproot.org.il> | 2014-11-11 01:52:58 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-11-11 14:30:09 +0200 |
| commit | 8b8a6c5e02f9eb350d665cc563607714cee58870 (patch) | |
| tree | f70fa1b7e9b780c338f8de2ee93666e2510f61f2 /scripts/textanalysis.js | |
| parent | ab0152ee1c621ce40d4cf0a47f7090e7698953b0 (diff) | |
use non-named module definition
Diffstat (limited to 'scripts/textanalysis.js')
| -rw-r--r-- | scripts/textanalysis.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/textanalysis.js b/scripts/textanalysis.js index d9c77c06..4cff49bc 100644 --- a/scripts/textanalysis.js +++ b/scripts/textanalysis.js @@ -1,6 +1,8 @@ "use strict"; -define('textanalysis', ['model/util', 'model/diff'], function(model_util, model_diff) { +define(['rz_core', 'model/util', 'model/diff'], +function(rz_core, model_util, model_diff) { + var typeindex = 0; var nodetypes = ["person", "project", "skill", "deliverable", "objective"]; var typeStack = []; |
