Skip to content

Commit

Permalink
Merge branch 'master' into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ericabouaf committed Jul 21, 2014
2 parents 2b987c4 + c50ba49 commit d59e21e
Show file tree
Hide file tree
Showing 40 changed files with 473 additions and 224 deletions.
10 changes: 9 additions & 1 deletion app-examples/wireit-app/index.html
Expand Up @@ -116,7 +116,7 @@ <h2 class="no-toc">Wirings</h2>

YUI({
filter: 'raw' // debug
}).use('wireit-app', 'image-container', 'inout-container', function (Y) {
}).use('wireit-app', 'image-container', 'inout-container', 'textarea-container', function (Y) {

window.Y = Y; //debug

Expand Down Expand Up @@ -164,6 +164,14 @@ <h2 class="no-toc">Wirings</h2>
}
]
}
},
{
name: "TextArea Demo",
config: {
children: Y.WidgetTerminals.FOUR_EDGES,
type: 'TextareaContainer',
headerContent: 'Textarea'
}
}
];

Expand Down
4 changes: 2 additions & 2 deletions build/bezier-wire/bezier-wire-coverage.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion build/bezier-wire/bezier-wire-debug.js
Expand Up @@ -54,7 +54,9 @@ Y.extend(Y.BezierWire, Y.WireBase, {



SERIALIZABLE_ATTRS: ["color","width","bezierTangentNorm"]
SERIALIZABLE_ATTRS: function() {
return ["color","width","bezierTangentNorm"];
}

});

Expand Down
2 changes: 1 addition & 1 deletion build/bezier-wire/bezier-wire-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion build/bezier-wire/bezier-wire.js
Expand Up @@ -54,7 +54,9 @@ Y.extend(Y.BezierWire, Y.WireBase, {



SERIALIZABLE_ATTRS: ["color","width","bezierTangentNorm"]
SERIALIZABLE_ATTRS: function() {
return ["color","width","bezierTangentNorm"];
}

});

Expand Down
15 changes: 10 additions & 5 deletions build/container/assets/skins/sam/container-skin.css
Expand Up @@ -7,7 +7,8 @@
.yui3-container,
.yui3-form-container,
.yui3-image-container,
.yui3-inout-container {
.yui3-inout-container,
.yui3-textarea-container {
z-index: 5;

position: absolute;
Expand All @@ -20,7 +21,8 @@
.yui3-container-content,
.yui3-form-container-content,
/*.yui3-image-container-content,*/
.yui3-inout-container-content {
.yui3-inout-container-content,
.yui3-textarea-container-content {
border: 2px solid #3366CC;

-moz-border-radius-topleft: 5px;
Expand All @@ -39,7 +41,8 @@
.yui3-container-content .yui3-widget-hd,
.yui3-form-container-content .yui3-widget-hd,
.yui3-inout-container-content .yui3-widget-hd,
.yui3-image-container-content .yui3-widget-hd {
.yui3-image-container-content .yui3-widget-hd,
.yui3-textarea-container-content .yui3-widget-hd {
/*-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
-webkit-border-top-left-radius: 5px;
Expand All @@ -53,7 +56,8 @@
.yui3-container-content .yui3-widget-ft,
.yui3-form-container-content .yui3-widget-ft,
.yui3-inout-container-content .yui3-widget-ft,
.yui3-image-container-content .yui3-widget-ft {
.yui3-image-container-content .yui3-widget-ft,
.yui3-textarea-container-content .yui3-widget-ft {
background-color: #ccc;
font-style: italic;
font-size: 80%;
Expand All @@ -64,7 +68,8 @@


.yui3-container-icon,
.yui3-inout-container-icon {
.yui3-inout-container-icon,
.yui3-textarea-container-icon {
cursor: pointer;
position: absolute;
right: 10px;
Expand Down
2 changes: 1 addition & 1 deletion build/container/assets/skins/sam/container.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d59e21e

Please sign in to comment.