Repository: flex-asjs Updated Branches: refs/heads/VF2JS [created] 95b41cfca
First component, more to serve as a placeholder than anything else ;-) Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/95b41cfc Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/95b41cfc Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/95b41cfc Branch: refs/heads/VF2JS Commit: 95b41cfcaa7df0c6021e6de2a433d775c22ffb41 Parents: b625c82 Author: Erik de Bruin <[email protected]> Authored: Wed Jul 2 16:23:53 2014 +0200 Committer: Erik de Bruin <[email protected]> Committed: Wed Jul 2 16:23:53 2014 +0200 ---------------------------------------------------------------------- frameworks/js/VF2JS/src/vf2js/components/Button.js | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/95b41cfc/frameworks/js/VF2JS/src/vf2js/components/Button.js ---------------------------------------------------------------------- diff --git a/frameworks/js/VF2JS/src/vf2js/components/Button.js b/frameworks/js/VF2JS/src/vf2js/components/Button.js new file mode 100644 index 0000000..95aea1a --- /dev/null +++ b/frameworks/js/VF2JS/src/vf2js/components/Button.js @@ -0,0 +1,10 @@ +'use strict'; + +goog.provide('vf2js.components.Button'); + + + +/** + * @constructor + */ +vf2js.components.Button = function() {}; \ No newline at end of file
