Skip to content

Commit

Permalink
Merge branch 'release/4.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlaefer committed Sep 28, 2014
2 parents 549f9f2 + f00a840 commit 6131fa9
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion app/Config/version.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
Configure::write('Saito.v', '4.3.0');
Configure::write('Saito.v', '4.3.1');

Configure::write('Saito.saitoHomepage', 'http://saito.siezi.com');
16 changes: 8 additions & 8 deletions app/webroot/dist/common.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions app/webroot/dist/main.min.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions app/webroot/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ require.config({

templateHelpers: 'lib/saito/templateHelpers'
}
// force disable cache for require.js resources (esp. mobile spielzeugbrowser)
// urlArgs: 'token=' + (new Date()).getTime()
});

// fallback if dom does not get ready for some reason to show the content eventually
Expand Down
6 changes: 6 additions & 0 deletions app/webroot/js/views/answering.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,12 @@ define([
},

_focusSubject: function() {
// focus is broken in Mobile Safari iOS 8
var iOS = window.navigator.appVersion.match('iPad|iPhone');
if (iOS) {
return;
}

this.$('.postingform input[type=text]:first').focus();
},

Expand Down

0 comments on commit 6131fa9

Please sign in to comment.