X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/2bb0e6a7d19dc695f82373e568e6959c6b995eca..efe36f4f1b5df351eeb4d40a54c3900cf9a7079b:/modules/nodePane/nodePane.js diff --git a/modules/nodePane/nodePane.js b/modules/nodePane/nodePane.js deleted file mode 100644 index fc8284f..0000000 --- a/modules/nodePane/nodePane.js +++ /dev/null @@ -1,35 +0,0 @@ -define([ -'libs/text!./template.html', -'libs/jquery-1.9.1.min', -'libs/underscore-min', - -], function(templateSrc, $, _) { - -return function(sandbox) { - - view = $(_.template(templateSrc)()); - - view.on('change', 'select', function(e) { - var target = $(e.target); - var attr = target.attr('class').split('-')[3] === 'tagSelect' ? 'tag' : 'class'; - sandbox.publish('nodeChanged', attr, target.val()); - }); - - return { - start: function() { - sandbox.publish('ready'); - }, - getView: function() { - return view; - }, - setNode: function(node) { - var tag = node.attr('wlxml-tag'); - var klass = node.attr('wlxml-class'); - view.find('.rng-module-nodePane-tagSelect').val(tag); - view.find('.rng-module-nodePane-classSelect').val(klass); - } - } - -} - -}); \ No newline at end of file