I recently took over the project because my previous web developers of my clients disappeared. The only files I should work with are what is stored on the local server. The only problem I ran into is that all JS runs through the Closure Compiler (or something similar), which makes javascript really annoying to read (at least for large functions). Is there anything that would help me swap out vars in JS so that I have something cleaner to watch? I do it manually and it gets pretty tedious.
Here is an example of what I mean:
var n = {}, e = a.extend(n, x), y = "pageLoaded", u = "pageLoading", c = "modLoaded", w = "xhrComplete", l = true, v = false, s = a("body"), g = Modernizr.historymanagement, f = "", t = "", r = "", k = null, b = window.History;
Thanks in advance!
Tre
source share