Add missing ; to js code

This commit is contained in:
Bart Visscher 2012-09-05 22:17:33 +02:00
parent 9f1c76beef
commit 9329af921d
14 changed files with 28 additions and 28 deletions

View File

@ -143,7 +143,7 @@ var FileActions={
getCurrentPermissions:function() {
return FileActions.currentFile.parent().data('permissions');
}
}
};
$(document).ready(function(){
if($('#allowZipDownload').val() == 1){
@ -151,12 +151,12 @@ $(document).ready(function(){
} else {
var downloadScope = 'file';
}
FileActions.register(downloadScope,'Download', OC.PERMISSION_READ, function(){return OC.imagePath('core','actions/download')},function(filename){
FileActions.register(downloadScope,'Download', OC.PERMISSION_READ, function(){return OC.imagePath('core','actions/download');},function(filename){
window.location=OC.filePath('files', 'ajax', 'download.php') + encodeURIComponent('?files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val()));
});
});
FileActions.register('all','Delete', OC.PERMISSION_DELETE, function(){return OC.imagePath('core','actions/delete')},function(filename){
FileActions.register('all','Delete', OC.PERMISSION_DELETE, function(){return OC.imagePath('core','actions/delete');},function(filename){
if(Files.cancelUpload(filename)) {
if(filename.substr){
filename=[filename];
@ -174,7 +174,7 @@ FileActions.register('all','Delete', OC.PERMISSION_DELETE, function(){return OC.
$('.tipsy').remove();
});
FileActions.register('all','Rename', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/rename')},function(filename){
FileActions.register('all','Rename', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/rename');},function(filename){
FileList.rename(filename);
});

View File

@ -26,7 +26,7 @@ Files={
});
procesSelection();
}
}
};
$(document).ready(function() {
$('#fileList tr').each(function(){
//little hack to set unescape filenames in attribute

View File

@ -20,5 +20,5 @@ $(document).ready(function(){
$('#enable_encryption').change(function(){
var checked=$('#enable_encryption').is(':checked');
OC.AppConfig.setValue('files_encryption','enable_encryption',(checked)?'true':'false');
})
})
});
});

View File

@ -10,7 +10,7 @@ $(document).ready(function() {
var app_secret = $(this).find('.configuration [data-parameter="app_secret"]').val();
var config = $(this).find('.configuration');
if (app_key != '' && app_secret != '') {
var pos = window.location.search.indexOf('oauth_token') + 12
var pos = window.location.search.indexOf('oauth_token') + 12;
var token = $(this).find('.configuration [data-parameter="token"]');
if (pos != -1 && window.location.search.substr(pos, $(token).val().length) == $(token).val()) {
var token_secret = $(this).find('.configuration [data-parameter="token_secret"]');
@ -73,7 +73,7 @@ $(document).ready(function() {
}
});
} else {
OC.dialogs.alert('Please provide a valid Dropbox app key and secret.', 'Error configuring Dropbox storage')
OC.dialogs.alert('Please provide a valid Dropbox app key and secret.', 'Error configuring Dropbox storage');
}
});

View File

@ -66,7 +66,7 @@ OC.MountConfig={
return true;
}
}
}
};
$(document).ready(function() {
$('.chzn-select').chosen();
@ -179,4 +179,4 @@ $(document).ready(function() {
}
});
});
});

View File

@ -11,7 +11,7 @@ $(document).ready(function() {
$(document).ready(function(){
if (typeof FileActions !== 'undefined') {
// Add history button to files/index.php
FileActions.register('file','History', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/history')},function(filename){
FileActions.register('file','History', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/history');},function(filename){
if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback
@ -76,7 +76,7 @@ function createVersionsDropdown(filename, files) {
$('#found_versions').change(function(){
var revision=parseInt($(this).val());
revertFile(files,revision);
})
});
}
});

View File

@ -51,5 +51,5 @@ OC.AppConfig={
deleteApp:function(app){
OC.AppConfig.postCall('deleteApp',{app:app});
},
}
};
//TODO OC.Preferences

View File

@ -208,7 +208,7 @@ OC={
popup.prepend('<span class="arrow '+arrowclass+'"></span><h2>'+t('core', 'Settings')+'</h2><a class="close svg"></a>').show();
popup.find('.close').bind('click', function() {
popup.remove();
})
});
if(typeof props.loadJS !== 'undefined') {
var scriptname;
if(props.loadJS === true) {

View File

@ -11,15 +11,15 @@ ListView.generateTable=function(collumns){
html+='<thead>';
html+='</head>';
html+='<tbody>';
html+'<tr class="template">'
html+'<tr class="template">';
$.each(collumns,function(index,collumn){
html+='<th class="'+collumn.toLower()+'"</th>';
});
html+'</tr>'
html+'</tr>';
html+='</tbody>';
html='</table>';
return $(html);
}
};
ListView.prototype={
rows:{},
@ -49,7 +49,7 @@ ListView.prototype={
var element=$(html);
element.append($('<img src="'+element.icon+'"/>'));
element.click(element.callback);
tr.children('td.'+collumn).append(element)
tr.children('td.'+collumn).append(element);
});
});
if(this.deleteCallback){
@ -68,4 +68,4 @@ ListView.prototype={
empty:function(){
this.element.children('tr:not(.template)').remove();
}
}
};

View File

@ -1,11 +1,11 @@
var dbtypes
var dbtypes;
$(document).ready(function() {
dbtypes={
sqlite:!!$('#hasSQLite').val(),
mysql:!!$('#hasMySQL').val(),
postgresql:!!$('#hasPostgreSQL').val(),
oracle:!!$('#hasOracle').val(),
}
};
$('#selectDbType').buttonset();
$('#datadirContent').hide(250);

View File

@ -137,7 +137,7 @@ OC.Share={
html += '<input id="linkText" type="text" readonly="readonly" />';
html += '<div id="linkPass">';
html += '<input id="linkPassText" type="password" placeholder="Password" />';
html += '</div>'
html += '</div>';
html += '</div>';
}
html += '</div>';

View File

@ -26,8 +26,8 @@ $(document).ready(function(){
var value = 'no';
}
} else {
var value = $(this).val()
var value = $(this).val();
}
OC.AppConfig.setValue('core', $(this).attr('name'), value);
});
});
});

View File

@ -96,7 +96,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
}
return app;
}
}
};
$(document).ready(function(){
$('#leftcontent li').each(function(index,li){
@ -106,7 +106,7 @@ $(document).ready(function(){
});
$('#leftcontent li').keydown(function(event) {
if (event.which == 13 || event.which == 32) {
$(event.target).click()
$(event.target).click();
}
return false;
});

View File

@ -83,4 +83,4 @@ OC.msg={
$(selector).html( data.data.message ).addClass('error');
}
}
}
};