This commit is contained in:
Jonathan Frederic 2015-08-19 14:07:02 -07:00
parent 84c9cb736f
commit b0ec31d98d
2 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,7 @@ var aliasifyConfig = {
aliases: {
jqueryui: 'jquery-ui',
termjs: 'term.js',
caja: './../../../static/components/google-caja/html-css-sanitizer-minified'
caja: 'google-caja/html-css-sanitizer-minified'
},
verbose: false
}
@ -16,6 +16,7 @@ var aliasifyConfig = {
var b = browserify({
paths: [
__dirname + '/static-src',
__dirname + '/static/components',
],
debug: true,
fullPaths: true

View File

@ -4,7 +4,7 @@
"use strict";
var $ = require('jquery');
var sanitize = require('./../../../static/components/google-caja/caja.js');
var caja = require('caja');
var noop = function (x) { return x; };