]> source.dussan.org Git - nextcloud-server.git/commitdiff
update to !==
authorBart Visscher <bartv@thisnet.nl>
Fri, 28 Jun 2013 19:00:09 +0000 (21:00 +0200)
committerBart Visscher <bartv@thisnet.nl>
Fri, 28 Jun 2013 19:00:09 +0000 (21:00 +0200)
apps/files/js/fileactions.js

index 316acda51336c6647b5aed682c08a333a0310615..fac0ed1ff9b27902f3a58bb8cbf2b014ec593d31 100644 (file)
@@ -191,7 +191,7 @@ FileActions.register('all', 'Rename', OC.PERMISSION_UPDATE, function () {
 
 FileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename) {
        var dir = $('#dir').val()
-       if (dir != '/') {
+       if (dir !== '/') {
                dir = dir + '/';
        }
        window.location = OC.linkTo('files', 'index.php') + '?dir=' + encodeURIComponent(dir + filename);