diff options
author | Lauri Ojansivu <x@xet7.org> | 2017-02-13 18:23:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-13 18:23:23 +0200 |
commit | 8f61e498ff44d97ee2eba6d9f11630318d121da1 (patch) | |
tree | 1f01934d642979c9c0616f1d9d5765c51062aee9 | |
parent | b62e6483790f666f0e42250a8cbb8230f66f0e56 (diff) | |
parent | 3737cb30dd4451e2be410a371321178f2f2f6ac0 (diff) | |
download | wekan-8f61e498ff44d97ee2eba6d9f11630318d121da1.tar.gz wekan-8f61e498ff44d97ee2eba6d9f11630318d121da1.tar.bz2 wekan-8f61e498ff44d97ee2eba6d9f11630318d121da1.zip |
Merge pull request #836 from vuxor/devel
Fix typo
-rw-r--r-- | client/lib/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/lib/utils.js b/client/lib/utils.js index 4f772a60..9a9ff654 100644 --- a/client/lib/utils.js +++ b/client/lib/utils.js @@ -27,7 +27,7 @@ Utils = { // in fact, what we really care is screen size // large mobile device like iPad or android Pad has a big screen, it should also behave like a desktop // in a small window (even on desktop), Wekan run in compact mode. - // we can easily debug with a small window of desktop broswer. :-) + // we can easily debug with a small window of desktop browser. :-) isMiniScreen() { this.windowResizeDep.depend(); return $(window).width() <= 800; |