{pattern: 'libs/*.js', included: false},
{pattern: 'fnpjs/**/*.js', included: false},
{pattern: 'modules/**/*.js', included: false},
+ {pattern: 'utils/**/*.js', included: false},
{pattern: 'views/**/*.js', included: false},
{pattern: 'fnpjs/**/*.html', included: false},
{pattern: 'modules/**/*.html', included: false},
define([
-'libs/jquery-1.9.1.min'
-], function($) {
+'libs/jquery-1.9.1.min',
+'utils/wlxml'
+], function($, wlxmlUtils) {
'use strict';
labelWidget: function(tag, klass) {
return $('<span>')
.addClass('canvas-widget canvas-widget-label')
- .text(tag + (klass ? ' / ' + klass : ''));
+ .text(wlxmlUtils.wlxmlTagNames[tag] + (klass ? ' / ' + wlxmlUtils.wlxmlClassNames[klass] : ''));
},
footnoteHandler: function(clickHandler) {