non security modules update

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-20 16:32:07 +02:00
parent 6a8d30db08
commit 37fbabab56
466 changed files with 32690 additions and 9652 deletions

View File

@@ -5,9 +5,9 @@ core = 7.x
configure = admin/config/media/imce_dir_man
dependencies[] = imce
; Information added by drupal.org packaging script on 2012-10-30
version = "7.x-1.1"
; Information added by Drupal.org packaging script on 2014-03-23
version = "7.x-1.2"
core = "7.x"
project = "imce_tools"
datestamp = "1351598216"
datestamp = "1395598458"

View File

@@ -4,9 +4,9 @@ core = 7.x
package = Media
dependencies[] = imce
; Information added by drupal.org packaging script on 2012-10-30
version = "7.x-1.1"
; Information added by Drupal.org packaging script on 2014-03-23
version = "7.x-1.2"
core = "7.x"
project = "imce_tools"
datestamp = "1351598216"
datestamp = "1395598458"

View File

@@ -11,3 +11,7 @@
background: url('loading.gif') no-repeat top left;
padding-left: 20px;
}
#imce-search-results .link {
text-decoration: underline;
}

View File

@@ -4,9 +4,9 @@ core = 7.x
package = Media
dependencies[] = imce
; Information added by drupal.org packaging script on 2012-10-30
version = "7.x-1.1"
; Information added by Drupal.org packaging script on 2014-03-23
version = "7.x-1.2"
core = "7.x"
project = "imce_tools"
datestamp = "1351598216"
datestamp = "1395598458"

View File

@@ -16,12 +16,16 @@ imce.hooks.load.push(function() {
data = eval('(' + serverdata + ')');
var filelist = jQuery.map(data.files, function(fullpath, index) {
var li = document.createElement('li');
/*jQuery(li).click(function () {
jQuery(li).click(function () {
file = fullpath.substr(fullpath.lastIndexOf('/') + 1);
dir = fullpath.substr(0, fullpath.lastIndexOf('/'));
if (dir!=imce.conf.dir) {
imce.navigate(dir);
imce.dirActivate(dir);
}
imce.dirActivate(dir);
imce.highlight(file);
});*/
}).css('cursor','pointer').addClass('link');
if (index > 10) {
jQuery(li).addClass('toggle');
}