Skip to content

Commit e8c72e3

Browse files
committed
Various tweaks to layout
1 parent 4293552 commit e8c72e3

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

application/views/rest_server.php

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
<?php
2-
defined('BASEPATH') OR exit('No direct script access allowed');
3-
?><!DOCTYPE html>
2+
defined('BASEPATH') OR exit('No direct script access allowed');
3+
?>
4+
5+
<!DOCTYPE html>
46
<html lang="en">
57
<head>
68
<meta charset="utf-8">
79
<title>REST Server Tests</title>
810

9-
<style type="text/css">
11+
<style>
1012

1113
::selection { background-color: #E13300; color: white; }
1214
::-moz-selection { background-color: #E13300; color: white; }
1315

1416
body {
15-
background-color: #fff;
17+
background-color: #FFF;
1618
margin: 40px;
1719
font: 16px/20px normal Helvetica, Arial, sans-serif;
1820
color: #4F5155;
1921
}
2022

2123
a {
22-
color: #003399;
24+
color: #039;
2325
background-color: transparent;
2426
font-weight: normal;
2527
}
@@ -117,13 +119,14 @@
117119
<script>
118120
$(function() {
119121

120-
$('#ajax').on('click', function(event) {
122+
$('#ajax').on('click', function (event) {
121123

122124
event.preventDefault();
123125

124126
$.ajax({
125127

126-
url: $(this).attr('href'), // URL from the link that was clicked on.
128+
// URL from the link that was clicked on.
129+
url: $(this).attr('href'),
127130

128131
}).done(function (data) {
129132

0 commit comments

Comments
 (0)