Skip to content

Commit d54525e

Browse files
author
Reza Rahman
committed
Minor formatting
1 parent adadd18 commit d54525e

File tree

6 files changed

+11
-12
lines changed

6 files changed

+11
-12
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
javaee-javascript
2-
=================
1+
Java EE + JavaScript
2+
====================
33

4-
This project demonstrates how you can utilize today's most popular JavaScript frameworks like Angular, Backbone, Knockout and Ember to utilize the core strengths of Java EE using JAX-RS, JSR 356/WebSocket, JSON-P, CDI and Bean Validation. We will also include Oracle's own JavaScript solution named project Avatar.
4+
This project demonstrates how you can utilize today's most popular JavaScript frameworks like Angular,
5+
Backbone, Knockout and Ember to utilize the core strengths of Java EE using JAX-RS, JSR 356/WebSocket,
6+
JSON-P, CDI and Bean Validation.

javaee-javascript-main/src/main/webapp/css/chat/application.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,4 @@
6767
font-size: 16px;
6868
margin: 5px auto 0;
6969
padding: 6px;
70-
}
71-
70+
}

javaee-javascript-main/src/main/webapp/css/todo/application.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,4 @@ li .todo-item-remove-icon:hover { opacity: 1.0 }
8282
font-size: 16px;
8383
margin: 5px auto 0;
8484
padding: 6px;
85-
}
86-
85+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
'use strict';
22

3-
var todoApplication = angular.module('todoApplication',
4-
['todoControllers', 'todoServices', 'todoDirectives']);
3+
var todoApplication = angular.module('todoApplication',
4+
['todoControllers', 'todoServices', 'todoDirectives']);

javaee-javascript-main/src/main/webapp/javascript/todo/controllers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use strict';
1+
'use strict';
22

33
var todoControllers = angular.module('todoControllers', []);
44

javaee-javascript-main/src/main/webapp/todo.jsp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.min.js">script>
1010
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular-resource.min.js">script>
1111
<script type="text/javascript">
12-
var principal = '${pageContext.request.userPrincipal.name}';
13-
script>
12+
var principal = '${pageContext.request.userPrincipal.name}'; script>
1413
<script src="javascript/todo/controllers.js">script>
1514
<script src="javascript/todo/services.js">script>
1615
<script src="javascript/todo/directives.js">script>

0 commit comments

Comments
 (0)