Changeset 23
- Timestamp:
- Jul 10, 2014 9:38:42 AM (11 years ago)
- Location:
- pro-bachkim-filespace/sourcecode
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pro-bachkim-filespace/sourcecode/application/config/config.php
r1 r23 395 395 /* 396 396 |-------------------------------------------------------------------------- 397 | Active flags of left side menu397 | Number of records display on a page 398 398 |-------------------------------------------------------------------------- 399 399 | 400 400 */ 401 401 $config['record_per_page'] = 10; 402 403 /* 404 |-------------------------------------------------------------------------- 405 | API Url 406 |-------------------------------------------------------------------------- 407 | 408 */ 409 $config['api_url'] = 'http://api.violet.vn/'; 410 402 411 403 412 /* End of file config.php */ -
pro-bachkim-filespace/sourcecode/assets/js/filemanager/filemanager.js
r18 r23 86 86 }); 87 87 88 89 88 90 89 /** -
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.