-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
70f74ea
commit ec45bef
Showing
3 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
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,8 @@ | ||
# Forge Elements | ||
|
||
Compilation of custom elements developed to aid the development and debugging of HTML/CSS/JS applications. While referring to the individual element's documentation may be necessary for specific elements, most should be compatible with both web and nativeweb applications. | ||
|
||
## New Elements | ||
|
||
* [`<native-window>`](https://github.com/FuzzicalLogic/native-window) - Adds the function and default interfaces and behaviors for stylizable native windows/forms. | ||
* [`<native-title-bar>`](https://github.com/FuzzicalLogic/native-title-bar) - Element that mimics the Operating System's title bar. |
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,32 @@ | ||
{ | ||
"name": "forge-elements", | ||
"version": "0.1.0", | ||
"description": "Elements to aid development and debugging of web and nativeweb applications.", | ||
"keywords": [ | ||
"web-components", | ||
"polymer", | ||
"nativeweb" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/FuzzicalLogic/forge-elements.git" | ||
}, | ||
"dependencies": { | ||
"forge-reloader": "FuzzicalLogic/forge-reloader#~0", | ||
"forge-repainter": "FuzzicalLogic/forge-repainter#~0", | ||
"forge-titlebar-insert": "FuzzicalLogic/forge-titlebar-insert#~0" | ||
}, | ||
"homepage": "https://github.com/FuzzicalLogic/forge-elements", | ||
"authors": [ | ||
"Donald Atkinson" | ||
], | ||
"license": "http://polymer.github.io/LICENSE.txt", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"main": "index.html" | ||
} |
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,3 @@ | ||
<link rel="import" href="../forge-reloader/index.html"> | ||
<link rel="import" href="../forge-repainter/index.html"> | ||
<link rel="import" href="../forge-titlebar-insert/index.html"> |