The intended usage of plovr is as follows: During development, you should be able to edit JavaScript and Soy files in your favorite text editor, refresh your web application in the browser, and have it load a newly compiled version of your code. Any errors or warnings resulting from compilation by ...
9
votes
2answers
726 views
getting started with Google Closure if you don't care about minifying/compiling?
If you don't care about minifying your code, is there a way to get started using the Google Closure library without having to set up a subversion client and use the compiler? The Notepad sample ...
5
votes
1answer
597 views
Closure compiler app using jquery
I have manage to create a small size js application that uses jQuery and jQuery UI using google's closure compiler with advanced optimizations. Just for clarity: I have not compiled jQuery itself, ...
2
votes
2answers
233 views
Is it possible to create objects within Closure templates?
I've just started doing some work with Google Closure, and I'd like to move the creation of select fields into its own template, and call into that template with something like:
{call ...
2
votes
2answers
268 views
Why a JSC_MISSING_PROVIDE_ERROR in “Hello World” plovr example?
I'm trying to get started with plovr using the simple "Hello World" example in Closure: The Definitive Guide by Michael Bolin. But my build produces an error. Can anyone out there enlighten me as to ...
1
vote
1answer
129 views
How can I create my own custom functions for Closure templates in Plovr
I'm using Plovr and would like to use my own custom function (specifically a ucfirst function) inside templates. At the moment I'm only interested in rendering the templates as javascript, and since ...