Changeset 23 for pro-bachkim-filespace/sourcecode/assets/js/vsgrid.js
- Timestamp:
- Jul 10, 2014 9:38:42 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pro-bachkim-filespace/sourcecode/assets/js/vsgrid.js
r17 r23 86 86 $(o.sharemodal).modal('show'); 87 87 $(o.sharemodal).find('INPUT#txtSelectedObj').val(obj.name); 88 $(o.sharemodal).find('.modal-header').text('Chia sẻ ' + (obj.type == 'directory'?'thư mục ':'file') + ' [' + obj.name + ']');88 $(o.sharemodal).find('.modal-header').text('Chia sẻ ' + (obj.type == 'directory'?'thư mục ':'file ') + obj.name); 89 89 } 90 90 91 91 var showCopyModal = function (obj, action) { 92 var modalTitle = action == 'copy' ? 'Sao chép ' + (obj.type == 'directory'?'thư mục ':'file') + ' [' + obj.name + ']':'Di chuyá»n ' + (obj.type == 'directory'?'thư mục':'file') + ' [' + obj.name + ']'92 var modalTitle = action == 'copy' ? 'Sao chép ' + (obj.type == 'directory'?'thư mục ':'file ') + obj.name:'Di chuyá»n ' + (obj.type == 'directory'?'thư mục':'file') + ' ' + obj.name 93 93 var submitTitle = action == 'copy' ? 'Sao chép' : 'Di chuyá»n'; 94 94 var submitIcon = action == 'copy' ? '<i class="icon-copy"></i>' : '<i class="icon-cut"></i>'; … … 118 118 var excuteCopy = function (obj, tree, action) { 119 119 var destObj = tree.getSelectedObj(); 120 //alert(action + ' ' + obj.type + ' ' + obj.name + ' to ' + destObj.type + ' ' + destObj.name);121 120 122 121 //sendCommand
Note: See TracChangeset
for help on using the changeset viewer.