Skip to content

Commit 259b220

Browse files
committed
misc file cleanup
1 parent 3cd0a83 commit 259b220

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/Models/Server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public static function getByUUID($uuid)
199199
}
200200

201201
/**
202-
* Returns non-administrative headers for accessing a server on Scales
202+
* Returns non-administrative headers for accessing a server on the daemon
203203
*
204204
* @param string $uuid
205205
* @return array

app/Repositories/Daemon/FileRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function returnFileContents($file)
132132
}
133133

134134
/**
135-
* Save the contents of a requested file on the Scales instance.
135+
* Save the contents of a requested file on the daemon.
136136
*
137137
* @param string $file
138138
* @param string $content
@@ -166,7 +166,7 @@ public function saveFileContents($file, $content)
166166
}
167167

168168
/**
169-
* Returns a listing of all files and folders within a specified Scales directory.
169+
* Returns a listing of all files and folders within a specified directory on the daemon.
170170
*
171171
* @param string $directory
172172
* @return object

resources/views/admin/servers/new.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<label for="owner" class="control-label">Owner Email</label>
5151
<div>
5252
{{-- Hacky workaround to prevent Safari and Chrome from trying to suggest emails here --}}
53-
<input id="fake_user_name" name="fake_user[name]" style="position:absolute; top:-10000px;" type="text" value="Autofill Me">
53+
<input id="fake_user_name" name="fake_user[name]" style="position:absolute; top:-10000px;" tabindex="5" type="text" value="Autofill Me">
5454
<input type="text" autocomplete="off" name="owner" class="form-control" value="{{ old('owner', Input::get('email')) }}" />
5555
</div>
5656
</div>

resources/views/layouts/master.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
$('#applyUpdate').removeClass('fa-circle-o-notch fa-spinner fa-spin fa-check-circle fa-times-circle').addClass(selector).css({ color: color });
107107
});
108108
109-
// Socket Recieves New Status from Scales
109+
// Socket Recieves New Status from Daemon
110110
socket.on('status', function(data) {
111111
var newStatus, selector = 'fa-times-circle';
112112
var color = '#E33200';

0 commit comments

Comments
 (0)