18 lines
313 B
JavaScript
18 lines
313 B
JavaScript
//steal/js ods/scripts/compress.js
|
|
|
|
load("steal/rhino/rhino.js");
|
|
steal('steal/clean',function(){
|
|
steal.clean('ods/ods.html',{
|
|
indent_size: 1,
|
|
indent_char: '\t',
|
|
jslint : false,
|
|
ignore: /jquery\/jquery.js/,
|
|
predefined: {
|
|
steal: true,
|
|
jQuery: true,
|
|
$ : true,
|
|
window : true
|
|
}
|
|
});
|
|
});
|