Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
Add names to dispatch_auto, eventcontract_auto, and eventcontract_exa…
Browse files Browse the repository at this point in the history
…mple

for use by open source compiler.

OSS library is built as such:

java -jar compiler.jar \
  --js='./jsaction/**.js' \
  --js='./closure-library/**.js' \
  --closure_entry_point=jsaction.EventContractAuto \
  --compilation_level ADVANCED \
  --only_closure_dependencies

	Change on 2014/05/23 by nnaze <nnaze@google.com>

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=67866688
  • Loading branch information
nanaze authored and mknichel committed May 27, 2017
1 parent c436d3e commit ca886d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dispatcher_auto.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* instance of jsaction.EventContract that it receives from the main HTML page.
*/

goog.provide('jsaction.DispatcherAuto');

goog.require('jsaction.Dispatcher');


Expand Down
2 changes: 2 additions & 0 deletions eventcontract_auto.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
* element must be present in the DOM for event binding to succeed.
*/

goog.provide('jsaction.EventContractAuto');

goog.require('jsaction.EventContract');


Expand Down
2 changes: 2 additions & 0 deletions eventcontract_example.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
* cooperate, and to check that the code jscompiles properly.
*/

goog.provide('jsaction.EventContractExample');

goog.require('jsaction.EventContract');


Expand Down

0 comments on commit ca886d5

Please sign in to comment.