You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/01/22 15:48:17 UTC

svn commit: r1436975 - in /flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components: Button.js Image.js

Author: erikdebruin
Date: Tue Jan 22 14:48:16 2013
New Revision: 1436975

URL: http://svn.apache.org/viewvc?rev=1436975&view=rev
Log:
- minor changes and addition of Image.js - needed to test Publisher app and workflow

Added:
    flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Image.js   (with props)
Modified:
    flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Button.js

Modified: flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Button.js
URL: http://svn.apache.org/viewvc/flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Button.js?rev=1436975&r1=1436974&r2=1436975&view=diff
==============================================================================
--- flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Button.js (original)
+++ flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Button.js Tue Jan 22 14:48:16 2013
@@ -1,6 +1,6 @@
 goog.provide('spark.components.Button');
 
-goog.require("goog.events");
+goog.require("goog.events.Event");
 
 /**
  * @constructor

Added: flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Image.js
URL: http://svn.apache.org/viewvc/flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Image.js?rev=1436975&view=auto
==============================================================================
--- flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Image.js (added)
+++ flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Image.js Tue Jan 22 14:48:16 2013
@@ -0,0 +1,11 @@
+goog.provide('spark.components.Image');
+
+/**
+ * @constructor
+ */
+spark.components.Image = function() {
+	this.element = document.createElement('img');
+	this.element.src = "";
+	
+	document.body.appendChild(this.element);
+}

Propchange: flex/asjs/branches/develop/frameworks/js/VanillaSDK/spark/components/Image.js
------------------------------------------------------------------------------
    svn:eol-style = native