-
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.
new reactivitiy engine (observable slim) and awc router implementation
- Loading branch information
Showing
37 changed files
with
6,338 additions
and
399 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## AWC Router | ||
|
||
This part of the documentation is work in progress. You can check [AWC router repo](https://github.com/colscott/a-wc-router) for more info. |
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
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
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
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
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,9 @@ | ||
|
||
<IfModule mod_rewrite.c> | ||
RewriteEngine On | ||
#RewriteBase / | ||
RewriteRule ^index\.html$ - [L] | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteRule . index.html [L] | ||
</IfModule> |
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,40 @@ | ||
<html> | ||
a pages {state.name} | ||
</html> | ||
<style> | ||
p { | ||
background: aquamarine; | ||
border-radius: 30px; | ||
padding: 20px; | ||
font-size: 20px; | ||
text-align: center; | ||
width: 300px; | ||
margin: 0 auto; | ||
color: aquamarine; | ||
color: "{data.color}"; | ||
} | ||
</style> | ||
<script> | ||
class { | ||
data = { | ||
name: "fehmi", | ||
age: 37, | ||
personalities: ["Calm", "Creative", "Passionate"], | ||
hobbies: { | ||
"Music Producing": "Kırk yılda bir", | ||
Gaming: "Aydı yılda bir", | ||
Sports: "Meeeh", | ||
}, | ||
color: "blue" | ||
}; | ||
methods = { | ||
asd(e) { | ||
alert("asd function called"); | ||
console.log(event); | ||
}, | ||
bcd() { | ||
alert("bcd") | ||
} | ||
}; | ||
} | ||
</script> |
Oops, something went wrong.