-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
118 additions
and
137 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 Basic Web Components | ||
Copyright (c) 2015 Component Kitchen, Inc. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
the Software, and to permit persons to whom the Software is furnished to do so, | ||
subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
Note: This release of this particular component requires an **older version of Polymer (v0.5.5)**. | ||
|
||
----- | ||
|
||
The organization of these web component files is tuned for the component's | ||
inclusion in other projects via [Bower](http://bower.io). If you'd like to run | ||
this component's demo on your own machine, please see these | ||
[instructions](https://github.com/basic-web-components/components-dev/wiki/Running-Basic-Web-Component-demos). | ||
[instructions](https://github.com/basic-web-components/components-dev/wiki/Running-Basic-Web-Component-demos). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
{ | ||
"name": "basic-framed-content", | ||
"description": "Communicates across a frame boundary to an outer element", | ||
"version": "0.5.0", | ||
"version": "0.6.0-preview", | ||
"license": "MIT", | ||
"main": "basic-framed-content.html", | ||
"dependencies": { | ||
"polymer": "Polymer/polymer#^0.5.5" | ||
"basic-shared": "basic-web-components/basic-shared#master", | ||
"iron-icons": "PolymerElements/iron-icons", | ||
"polymer": "Polymer/polymer#^0.8.0-rc.7" | ||
}, | ||
"devDependencies": { | ||
"web-component-tester": "*" | ||
}, | ||
"keywords": [ | ||
"basic-web-components", | ||
"web-components" | ||
], | ||
"ignore": [ | ||
"**/.*" | ||
"**/.*", | ||
"/test/" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<meta charset="utf-8"> | ||
<title>Sample framed page</title> | ||
|
||
<script src="../bower_components/webcomponentsjs/webcomponents-lite.js"></script> | ||
<link rel="import" href="basic-framed-content.html"> | ||
|
||
<style> | ||
body, | ||
button, | ||
input { | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
font-size: 15px; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
} | ||
|
||
basic-framed-content { | ||
padding: 1em; | ||
} | ||
</style> | ||
|
||
<script> | ||
document.addEventListener('WebComponentsReady', function() { | ||
document.body.removeAttribute('unresolved'); | ||
}); | ||
</script> | ||
|
||
</head> | ||
|
||
<body unresolved> | ||
<basic-framed-content> | ||
This is a framed page, so this content isn't normaly available to the | ||
outside page. | ||
</basic-framed-content> | ||
</body> | ||
|
||
</html> |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.