diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-02-14 08:51:51 -0800 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-02-14 08:51:51 -0800 |
commit | 7f1b8274a895972b9e850e90b56797c42adae30e (patch) | |
tree | d63df1e9723d44640d8b53e59afd82ebb22a72ae | |
parent | db30f94fc89dff1dffe46cee6aca6eef8ac9e793 (diff) | |
parent | 6a250c877f2f4446654cb249e9b577f37e41c889 (diff) | |
download | nextcloud-server-7f1b8274a895972b9e850e90b56797c42adae30e.tar.gz nextcloud-server-7f1b8274a895972b9e850e90b56797c42adae30e.zip |
Merge pull request #1696 from owncloud/fixing-more-ie8-master
Fixing more ie8 master
-rw-r--r-- | apps/files_external/js/settings.js | 4 | ||||
-rw-r--r-- | settings/js/apps.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 172ef097fbf..12690395270 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -47,7 +47,7 @@ OC.MountConfig={ oldUsers.splice($.inArray(applicable, oldUsers), 1); } } - $.post(OC.filePath('files_external', 'ajax', 'addMountPoint.php'), { mountPoint: mountPoint, class: backendClass, classOptions: classOptions, mountType: mountType, applicable: applicable, isPersonal: isPersonal }); + $.post(OC.filePath('files_external', 'ajax', 'addMountPoint.php'), { mountPoint: mountPoint, 'class': backendClass, classOptions: classOptions, mountType: mountType, applicable: applicable, isPersonal: isPersonal }); }); var mountType = 'group'; $.each(oldGroups, function(index, applicable) { @@ -61,7 +61,7 @@ OC.MountConfig={ var isPersonal = true; var mountType = 'user'; var applicable = OC.currentUser; - $.post(OC.filePath('files_external', 'ajax', 'addMountPoint.php'), { mountPoint: mountPoint, class: backendClass, classOptions: classOptions, mountType: mountType, applicable: applicable, isPersonal: isPersonal }); + $.post(OC.filePath('files_external', 'ajax', 'addMountPoint.php'), { mountPoint: mountPoint, 'class': backendClass, classOptions: classOptions, mountType: mountType, applicable: applicable, isPersonal: isPersonal }); } return true; } diff --git a/settings/js/apps.js b/settings/js/apps.js index 3bc3488e490..8c266c66e4b 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -134,7 +134,7 @@ OC.Settings.Apps = OC.Settings.Apps || { if(container.children('li[data-id="'+entry.id+'"]').length === 0){ var li=$('<li></li>'); li.attr('data-id', entry.id); - var img= $('<img></img>').attr({ src: entry.icon, class:'icon'}); + var img= $('<img class="icon"/>').attr({ src: entry.icon}); var a=$('<a></a>').attr('href', entry.href); a.text(entry.name); a.prepend(img); |