Skip to content

Commit

Permalink
Merge pull request #3795 from mkoistinen/mkoistinen-feature/fix_3688
Browse files Browse the repository at this point in the history
Fix for #3688
  • Loading branch information
mkoistinen committed Jan 29, 2015
2 parents 86fa9ac + 029442f commit 077066b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cms/static/cms/js/modules/cms.clipboard.js
Expand Up @@ -30,7 +30,7 @@ $(document).ready(function () {
this.triggerRemove = this.clipboard.find('.cms_clipboard-empty a');

// states
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'touchend.cms';
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'touchend.cms click.cms';
this.timer = function () {};

// setup initial stuff
Expand Down
2 changes: 1 addition & 1 deletion cms/static/cms/js/modules/cms.modal.js
Expand Up @@ -32,7 +32,7 @@ $(document).ready(function () {
this.toolbar = $('.cms_toolbar');

// states
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'touchend.cms';
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'touchend.cms click.cms';
this.maximized = false;
this.minimized = false;
this.triggerMaximized = false;
Expand Down
2 changes: 1 addition & 1 deletion cms/static/cms/js/modules/cms.plugins.js
Expand Up @@ -42,7 +42,7 @@ $(document).ready(function () {
this.timer = function () {};
this.timeout = 250;
this.focused = false;
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'tap.cms';
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'tap.cms click.cms';

// bind data element to the container
this.container.data('settings', this.options);
Expand Down
2 changes: 1 addition & 1 deletion cms/static/cms/js/modules/cms.sideframe.js
Expand Up @@ -30,7 +30,7 @@ $(document).ready(function () {
this.body = $('html');

// states
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'touchend.cms';
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'touchend.cms click.cms';
this.enforceReload = false;

// if the modal is initialized the first time, set the events
Expand Down
2 changes: 1 addition & 1 deletion cms/static/cms/js/modules/cms.structureboard.js
Expand Up @@ -34,7 +34,7 @@ $(document).ready(function () {
this.clipboard = $('.cms_clipboard');

// states
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'tap.cms';
this.click = (document.ontouchstart !== null) ? 'click.cms' : 'tap.cms click.cms';
this.timer = function () {};
this.interval = function () {};
this.state = false;
Expand Down

0 comments on commit 077066b

Please sign in to comment.