diff --git a/combine.php b/combine.php
index 16d5366..f77589b 100755
--- a/combine.php
+++ b/combine.php
@@ -52,14 +52,14 @@ foreach($files as $f)
file_put_contents("kis-custom.js", $new_file);
//Get a much-minified version from Google's closure compiler
-/*$ch = curl_init('http://closure-compiler.appspot.com/compile');
+$ch = curl_init('http://closure-compiler.appspot.com/compile');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'output_info=compiled_code&output_format=text&compilation_level=SIMPLE_OPTIMIZATIONS&js_code=' . urlencode($new_file));
$output = curl_exec($ch);
curl_close($ch);
-file_put_contents("kis-custom-min.js", $output);*/
+file_put_contents("kis-custom-min.js", $output);
//Display the output on-screen too
diff --git a/docs/symbols/src/kis-js_src_modules_DOM.js.html b/docs/symbols/src/kis-js_src_modules_DOM.js.html
index 05d7980..0c1265e 100644
--- a/docs/symbols/src/kis-js_src_modules_DOM.js.html
+++ b/docs/symbols/src/kis-js_src_modules_DOM.js.html
@@ -320,44 +320,58 @@
313 */
314 append: function(htm)
315 {
-316 this.el.insertAdjacentHTML('beforeend', htm);
-317 },
-318 /**
-319 * Adds to the innerHTML of the selected element, before the current children
-320 *
-321 * @name prepend
-322 * @memberOf $_.dom
-323 * @function
-324 * @param string htm
-325 */
-326 prepend: function(htm)
-327 {
-328 this.el.insertAdjacentHTML('afterbegin', htm);
-329 },
-330 /**
-331 * Sets or gets the innerHTML propery of the element(s) passed
-332 *
-333 * @name html
-334 * @memberOf $_.dom
-335 * @function
-336 * @param [string] htm
-337 * @return string
-338 * @type string
-339 */
-340 html: function(htm)
-341 {
-342
-343 if(typeof htm !== "undefined")
-344 {
-345 this.el.innerHTML = htm;
-346 }
-347
-348 //If the parameter is undefined, just return the current value
-349 return this.el.innerHTML;
-350 }
-351 };
-352
-353 $_.ext('dom', d);
-354
-355 }());
-356