Reputation: 300
I want a standalone rich text editor from google closure library but it does
have a lot of files is there a minified version
just for the text editor to download
i spend 4 hours and i couldn't find anything
Upvotes: 0
Views: 1135
Reputation: 6158
Not that I'm aware of - that would be sidestepping the Closure Compiler.
While the Google Closure Tools comes with the 'Closure Compiler' that minifies the code for you, it obfuscates the code as well. To accomplish your goal, you could hypothetically compile the code with the Closure Compiler and use the goog.exportSymbol
function to make your own minimized version with unobfuscated endpoints for your other JavaScript code, which would control when and how the editor was rendered.
IMHO, this sounds like a lot of work to pull out one component of the Google Closure Library. You should probably use the raw files and run them through some third-party minimizer that maintains the names of functions and properties, or you could use another component entirely. The compilation technique only has positives if you plan to use more of the Google Closure Library in the future.
Have you considered using the TinyMCE component? It may meet your needs better than taking half a step into the Google Closure Library.
Upvotes: 1