Add default value when renaming texture in skin library

This commit is contained in:
gplane 2017-04-25 22:03:12 +08:00
parent b0f29c5036
commit 93364ef723
2 changed files with 5 additions and 4 deletions

View File

@ -1,8 +1,8 @@
/*
* @Author: printempw
* @Date: 2016-07-19 10:46:38
* @Last Modified by: printempw
* @Last Modified time: 2017-01-22 15:57:57
* @Last Modified by: g-plane
* @Last Modified time: 2017-04-25 21:56:19
*/
'use strict';
@ -244,10 +244,11 @@ function upload() {
return false;
}
function changeTextureName(tid) {
function changeTextureName(tid, oldName) {
swal({
text: trans('skinlib.setNewTextureName'),
input: 'text',
inputValue: oldName,
showCancelButton: true,
inputValidator: (value) => {
return new Promise((resolve, reject) => {

View File

@ -51,7 +51,7 @@
<td id="name">{{ $texture->name }}
@if (!is_null($user) && ($texture->uploader == $user->uid || $user->isAdmin()))
<small>
<a href="javascript:changeTextureName({{ $texture->tid }});">{{ trans('skinlib.show.edit-name') }}</a>
<a href="javascript:changeTextureName({{ $texture->tid }}, '{{ $texture->name }}');">{{ trans('skinlib.show.edit-name') }}</a>
</small>
@endif
</td>