Browse Source

First commit

Herbert Vojčík 11 years ago
commit
98ded6c752
3 changed files with 37 additions and 0 deletions
  1. 1 0
      README
  2. 19 0
      devel.html
  3. 17 0
      index.html

+ 1 - 0
README

@@ -0,0 +1 @@
+This file was created by JetBrains WebStorm 5.0.4 for binding GitHub repository

+ 19 - 0
devel.html

@@ -0,0 +1,19 @@
+<html>
+<head>
+<title>{{name}}</title>
+<script src="/vendor/amber/js/amber.js"></script>
+</head>
+<body>
+<script type="text/javascript"> 
+	loadAmber({
+		files: [],
+		packageHome: './',
+		ready: function() {
+			smalltalk.Browser._openOn_(smalltalk.Application);
+			smalltalk.Application._open();
+	}});
+</script>
+<div>
+</div>
+</body>
+</html>

+ 17 - 0
index.html

@@ -0,0 +1,17 @@
+<html>
+<head>
+<title>My Project</title>
+<script src="/vendor/amber/js/amber.js" type="text/javascript"></script>
+</head>
+<body>
+<script type="text/javascript"> 
+	loadAmber({
+		deploy: true,
+		files: [],
+		packageHome: './',
+		ready: function() {
+			smalltalk.Application._open();
+		}}); 
+</script>
+</body>
+</html>