Skip to content

Commit

Permalink
finalizing v0.2.1 bits
Browse files Browse the repository at this point in the history
  • Loading branch information
ifandelse committed Jan 15, 2013
1 parent 86e7b96 commit f06b505
Show file tree
Hide file tree
Showing 10 changed files with 104 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# postal.xframe

## Version 0.2.0 (Dual Licensed [MIT](http://www.opensource.org/licenses/mit-license) & [GPL](http://www.opensource.org/licenses/gpl-license))
## Version 0.2.1 (Dual Licensed [MIT](http://www.opensource.org/licenses/mit-license) & [GPL](http://www.opensource.org/licenses/gpl-license))

## What is it?
postal.xframe is a [postal.federation](https://github.com/postaljs/postal.federation) plugin - enabling you to 'federate' instances of [postal](https://github.com/postaljs/postal.js) across iframe/window boundaries in the browser.
Expand Down
2 changes: 1 addition & 1 deletion component.json
@@ -1,6 +1,6 @@
{
"name" : "postal.xframe",
"version" : "0.2.0",
"version" : "0.2.1",
"main" : ["lib/postal.federation.js"],
"dependencies": {
"underscore" : "~1.1.7",
Expand Down
9 changes: 9 additions & 0 deletions ext/bootstrap-responsive.min.css

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

9 changes: 9 additions & 0 deletions ext/bootstrap.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions ext/bootstrap.min.js

Large diffs are not rendered by default.

61 changes: 61 additions & 0 deletions index.html
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<title>postal.xframe</title>
<link rel="stylesheet" href="ext/bootstrap-responsive.min.css" type="text/css">
<link rel="stylesheet" href="ext/bootstrap.min.css" type="text/css">
<style type="text/css">
.banner {
position: relative;
padding: 10px 0;
color: #ffffff;
text-align: center;
text-shadow: 0 1px 2px rgba(0,0,0,.35), 0 0 30px rgba(0,0,0,.055);
background: #020031; /* Old browsers */
background: -moz-linear-gradient(35deg, #020031 0%, #6d3353 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#020031), color-stop(100%,#6d3353)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(35deg, #020031 0%,#6d3353 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(35deg, #020031 0%,#6d3353 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(35deg, #020031 0%,#6d3353 100%); /* IE10+ */
background: linear-gradient(35deg, #020031 0%,#6d3353 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020031', endColorstr='#6d3353',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
-webkit-box-shadow: inset 0 3px 9px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 3px 9px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
box-shadow: inset 0 3px 9px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
}
.banner h1 {
font-size: 60px;
font-weight: bold;
letter-spacing: -1px;
line-height: 1;
}
.banner p {
font-size: 20px;
font-weight: 300;
line-height: 30px;
margin-bottom: 20px;
}
</style>
<script type="text/javascript" src="/ext/jquery-1.8.2.js"></script>
<script type="text/javascript" src="/ext/bootstrap.min.js"></script>
</head>
<body>
<header class="banner">
<div class="container-fluid">
<h1>postal.xframe</h1>
<p class="lead">postal.js 'federation' plugin enabling cross-frame federation of postal.js instances.</p>
</div>
</header>
<div class="container-fluid">
<div class="lead">
You're at the root of the repository. Some helpful links:
</div>
<div class="well well-large">
<a href="spec/">Tests</a>
</div>
<div class="well well-large">
<a href="example/">A completely silly test page that will one day be a real example</a>
</div>
</div>
</body>
</html>

0 comments on commit f06b505

Please sign in to comment.