Google Closure is a framework for writing large-scale applications in JavaScript. It includes an extensive library, a linter, a compiler, a template system, and a stylesheet language.

learn more… | top users | synonyms

1
vote
0answers
13 views

Google Closure: How to annotate a parameter used as a constructor

I use require.js for dependency management and Google Closure annotations to empower me with autocompletion (in WebStorm / IDEA). We rely heavily on Backbone and develop our Javascript code in ...
0
votes
0answers
15 views

Google Closure Library inherits properties

I'm experimenting with the Google closure library and in particluar its 'inherits' method. I have one question. When I extend a base class, if I do not set the base class's properties in its ...
0
votes
2answers
30 views

how to create a style selector in google closure editor

I wonder how difficult it is to create a working "style selector" selector in the goog closure editor similar to the one in tinymce. I mean a selector of text styles such as heading 1 heading 2 ...
1
vote
1answer
33 views

Closure-Compiler externs for AngularJS ui-router

Are there closure compiler externs available for AngularJS's ui-router? Is there an appropriate place to ask for these from the closure compiler (or Angular-ui) team?
0
votes
0answers
31 views

How to configure karma-runner (also known as testacular) to work with closure-library

I'm trying to use karma-runner with mocha testing framework to test an application built with closure-library and angularjs. I always get namespace.Application is not defined thanks in advance. ...
0
votes
0answers
21 views

Logging in google closure and dumping objects to console like console.log(myObject)

I like to dump objects to console sometimes so I can click on it and inspect it. For example: console.log(document.body); In closere it seems the logs log everything to console under every group ...
1
vote
1answer
54 views

GUI Layer on limeJS

I'm working with limeJS trying to figure out the best way to put a GUI over limeJS. Here's a better explanation: I've created two classes, one called 'SceneWithGui' and another called 'GuiOverlay'. ...
0
votes
1answer
41 views

Lifecycle of components with children

I'm confused about where to call various aspects of childrens' lifecycle in composite components. I do not see the way how one Component may be used in other Component which in turn may be used in ...
1
vote
2answers
68 views

JavaScript + css handling - Closure Tools / any other tools?

We do not have a lot of experience in Javascript/CSS world as we do primarily Java EE projects (backends). We usually have webapp/resource directory where is all the JS+CSS content and that`s it. It ...
1
vote
2answers
35 views

What's the advantage of goog.inherits' use of a temporary constructor?

From Google's Closure library: goog.inherits = function(childCtor, parentCtor) { /** @constructor */ function tempCtor() {}; tempCtor.prototype = parentCtor.prototype; childCtor.superClass_ = ...
1
vote
1answer
32 views

Untangling JS Source from Closure Compiler

There is a javascript application I would like to modify for my use*. The problem is, the js is compiled with Google Closure Compiler. Obviously, I should modify the sources (which are available in ...
1
vote
2answers
42 views

Generation of getters and setters in Javascript compatible with Closure Compiler

I'm writing a library that I hope to be compatible with Closure Compiler in Advanced mode. Most objects in the library maintain an internal object of attributes that are frequently part of the API, ...
0
votes
1answer
29 views

Experience with using google closure library in AIR?

I would like to try closure library in an AIR application. Will be using objects like goog.editor, goog.events and goog.dom. In an older book I'm reading about google closure it says it's using eval ...
0
votes
2answers
35 views

Can I share typedefs (Google Closure) across source files?

If I define a typedef in one file, for example: /** * @typedef {{ * prop1: string, * prop2: number * }} */ myClass.typedef; Can I share it across files? I don't want to have to declare the ...
2
votes
2answers
45 views

Rewriting a property named “default” with Google Closure Templates

In the data that I send to a Google Closure template, I have a property named default. I plan on compiling both the JavaScript code and the code generated by SoyToJsSrcCompiler using the Google ...
0
votes
1answer
43 views

Sending compiled objects to Closure Templates

If I call a template from JavaScript with: namespace.template(record); where record is an instance of: /** @typedef {{var: string}} */ and I use the Google Closure Compiler in advanced mode, ...
0
votes
3answers
51 views

Conditional assignment in JavaScript with Google Closure: | vs ||

I am using Google Closure and LOVE conditional assignments. I regularly use the var stuff = (condition) ? opt0: opt1; method and have more recently been introduced to var stuff = opt_param || ...
0
votes
1answer
27 views

closure compiler and closure inspector

I am reading an old book on google closure and it tells me about debugging code using closure inspector. The following page tells me that it's depreciated: ...
0
votes
1answer
21 views

Does Google Closure Templates support extending templates

E.g. I want my page templates page1.soy, page2.soy, pagex.soy to extend my base.soy template which includes a header and footer. Is this supported? This is common functionality in e.g. Django and ...
1
vote
2answers
71 views

Variables in Google Closure

http://closure-compiler.appspot.com/home (function(){ var somevar = 'somevar'; this.each(function(){ var minify_var = { method1: somevar + '1', method2: somevar + '2', method3: somevar + ...
0
votes
0answers
32 views

goog.structs.Map returning true for containsKey that doesn't exist

When using Map, if I ask the following in console, I get some conflicting results and can't figure out why containsKey gives me an incorrect answer. cameFrom does NOT contain currentNode. It also only ...
1
vote
2answers
70 views

How to rename/keep the callback methods

I have a function that checks that the callback methods within an object exist. Currently the Closure Compiler renames the methods (onClickDisplay and onCloseHide) so all the checks in ...
0
votes
2answers
45 views

Export property of an object

How do I export the method of an object to call externally in the HTML page. The JavaScript code: my.namespace.FeedbackController = Class.create(); ...
0
votes
3answers
94 views

Closure compiler mixes variable names

I have a problem where the Closure Compiler renames a global variable something like x.sa.xa but in all function where that global variable is referenced the compiler renames it something else like ...
1
vote
1answer
75 views

Accessing “this” in Clojurescript

Is there a way to access the "this" object in clojurescript? I am having issues with event propagation when I wrap an icon with an anchor and try to attach a handlder to the anchor. Without access to ...
0
votes
1answer
41 views

jQuery to Closure (Keep header on screen)

I'm working on a site that uses Closureextensively. I need to make a header row stick when everything else scrolls. I know how to do this in jQuery with just a few lines of code: ...
0
votes
1answer
47 views

How to compile several files to the same ones

I know that Google Closure Compiler allows me to compile several files into a single one like the following: java -jar compiler.jar --js assets/js/file1.js assets/js/file2.js --js_output_file ...
0
votes
1answer
122 views

How to use CoffeeScript together with Google Closure

Recently I have started to use Google Closure Tools for my javascript development. Until now, I have used to write my code in CoffeeScript, however, the javascript generated by CoffeeScript seems to ...
2
votes
1answer
55 views

Using Plovr to compile modules

I am trying to compile my JavaScript files using Plovr as defined in the config file below: { "id": "hello_demo", "paths": ".", "closure-library": "closure-library/closure/goog/", "mode": ...
1
vote
2answers
97 views

Creating a script to use Google Closure for multiple javascript files

I need to use the Google Closure compiler.jar to minify a huge project I am working on. I have multiple js files that I want to compile into a single game.min.js file. I know I can use the ...
0
votes
0answers
84 views

Document properties without a value in JSDoc3

I'm using Jsdoc3 to document my JavaScript project. I'm also using the Google Closure Compiler and Google Closure Library. Some of the properties on my classes start out as undefined, and are later ...
1
vote
0answers
37 views

Google closure on CouchDB

My goog dependencies are working 100% on a regular server, but I'm moving to CouchDB, which as you might know, sort of destroys the file hierarchy. Some of my dependencies aren't loading, but I am not ...
2
votes
1answer
107 views

What grid is behind spreadsheet in google doc?

Tired of various half-usable grids, I would really love to lay my hands on the grid/table component behind spreadsheet in Google Docs. What I'm really keen on is the ability to navigate with ...
2
votes
1answer
145 views
0
votes
0answers
53 views

Watch mode in compiler Google Closure Template

Google Closure Template provides a compiler from .soy files to javascript files. But I have to run the long java -jar ... command every time after edit `.soy' file. I just wonder whether there is a ...
1
vote
1answer
30 views

Is the Google API client for javascript compatible with the Closure advanced mode compilation?

Mostly, the title says it all, but I could not find any answer in the documentation of the library. Specifically, can I use said library from Clojurescript ? Cheers
0
votes
2answers
308 views

example of angularjs with closure

The angularjs FAQ has the following: Can I use the open-source Closure Library with Angular? Yes, you can use widgets from the Closure Library in Angular. However, I could not find any ...
1
vote
1answer
119 views

Google Closure JSON data submission with nested objects?

I've been using Google Tools (library, templating) for almost a year... and I came to the point where a I have to connect the backend with all the templates i've been working on. The backend receives ...
0
votes
2answers
123 views

Google Closure JSDoc Annotation

Is it possible to make protected instance method of the superclass public in the subclass using JSDoc annotation? More specifically, I have a class which is inherited from goog.ui.Control. ...
0
votes
1answer
79 views

Getting “b is undefined” in my .js file with LimeJS

I'm trying to use the javascript compiled file, but I get "b is undefined" since I launch the app with it. I have really no idea where does it come from. I removed et init again the sources from ...
2
votes
0answers
179 views

What is the difference between Google Closure and AngularJS approaches of unit testing?

I just received a project of a medium size which contains a lot of Closure unit tests. I'm going to rewrite the GUI part in AngularJS. Regarding this I have some questions: Is it fine to test ...
0
votes
1answer
239 views

Closure Compiler options

I want to use Closure Compiler to minify/compress JS code. the problem is that it doesn't minify as well as I expect it to. consider the code below. when I pass the string var func = function ( ...
4
votes
1answer
263 views

Connecting to ClojureScript bREPL: clojure.browser.repl/connect throws TypeError in compiled JavaScript

I'm trying to connect to a ClojureScript browser REPL, and I'm having trouble with clojure.browser.repl/connect. My compiled JavaScript throws a TypeError trying to call appendChild on a null object ...
0
votes
1answer
53 views

URL handling when Running django with javascript framework

I have an application written in javascript closure that runs fine on an apache server and a different application that runs on django. I want to include the javascript application in my django ...
1
vote
2answers
106 views

Google Closure Library: What's the “correct” way to parse a boolean?

One of the things I have learned in dealing with Google Closure is that the library has virtually everything I could possibly want in terms of raw data manipulation and management. What's up to me is ...
0
votes
0answers
57 views

html mysteriously being set to display:none via javascript

this app http://video-player-sample.appspot.com/ is supposed to display episode and video data as in here: ...
0
votes
0answers
33 views

Google Closure externs files for Firefox Extension and ctype libararies

I have a chrome and firefox extension that I'm trying to obuscate using google closure. I know that Chrome extension has an extern file for closure, but I can't find one for Firefox. Is there one ...
0
votes
1answer
143 views

Google closure - Triggering form submit

I have a form with a closure ui button: <form id="login-form"> <div> <input type="text" name="email" /> <input type="password" name="password" /> ...
0
votes
2answers
52 views

Using Plovr to remove whitespace from simple javascript file without managing dependencies

I can't figure out how to get Plovr to just remove whitespace from a simple javascript file and not try to manage dependencies or scopes. (I don't want to use ADVANCED mode if I can help it because my ...
0
votes
1answer
35 views

How to disable auto-repeated key events in tv-container

Is there a way to disable auto-repeated key events? Specifically I'm using the closure google tv web ui library, and when holding down/up scrolling through the components of a tv-container-vertical ...

1 2 3 4 5 6