diff options
Diffstat (limited to 'theme/javascript/utils')
-rw-r--r-- | theme/javascript/utils/dropdown.js | 27 | ||||
-rwxr-xr-x | theme/javascript/utils/platform.js | 5 | ||||
-rwxr-xr-x | theme/javascript/utils/sharing.js | 39 | ||||
-rwxr-xr-x | theme/javascript/utils/storage.js | 31 | ||||
-rw-r--r-- | theme/javascript/utils/url.js | 33 |
5 files changed, 0 insertions, 135 deletions
diff --git a/theme/javascript/utils/dropdown.js b/theme/javascript/utils/dropdown.js deleted file mode 100644 index fe4e1f4..0000000 --- a/theme/javascript/utils/dropdown.js +++ /dev/null @@ -1,27 +0,0 @@ -define([ - "jQuery" -], function($) { - - var toggleDropdown = function(e) { - var $dropdown = $(e.currentTarget).parent().find(".dropdown-menu"); - - $dropdown.toggleClass("open"); - e.stopPropagation(); - e.preventDefault(); - }; - - var closeDropdown = function(e) { - $(".dropdown-menu").removeClass("open"); - }; - - // Bind all dropdown - var init = function() { - $(document).on('click', ".toggle-dropdown", toggleDropdown); - $(document).on('click', ".dropdown-menu", function(e){ e.stopPropagation(); }); - $(document).on("click", closeDropdown); - }; - - return { - init: init - }; -}); diff --git a/theme/javascript/utils/platform.js b/theme/javascript/utils/platform.js deleted file mode 100755 index ad5f3b4..0000000 --- a/theme/javascript/utils/platform.js +++ /dev/null @@ -1,5 +0,0 @@ -define([], function() { - return { - isMobile: /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) - }; -});
\ No newline at end of file diff --git a/theme/javascript/utils/sharing.js b/theme/javascript/utils/sharing.js deleted file mode 100755 index a0cfb59..0000000 --- a/theme/javascript/utils/sharing.js +++ /dev/null @@ -1,39 +0,0 @@ -define([ - "jQuery" -], function($) { - var types = { - "twitter": function($el) { - window.open("http://twitter.com/home?status="+encodeURIComponent($("title").text()+" "+location.href)) - }, - "facebook": function($el) { - window.open("http://www.facebook.com/sharer/sharer.php?s=100&p[url]="+encodeURIComponent(location.href)) - }, - "google-plus": function($el) { - window.open("https://plus.google.com/share?url="+encodeURIComponent(location.href)) - }, - "weibo": function($el) { - window.open("http://service.weibo.com/share/share.php?content=utf-8&url="+encodeURIComponent(location.href)+"&title="+encodeURIComponent($("title").text())) - }, - "instapaper": function($el) { - window.open("http://www.instapaper.com/text?u="+encodeURIComponent(location.href)); - }, - "vk": function($el) { - window.open("http://vkontakte.ru/share.php?url="+encodeURIComponent(location.href)); - } - }; - - - // Bind all sharing button - var init = function() { - $(document).on("click", "a[data-sharing],button[data-sharing]", function(e) { - if (e) e.preventDefault(); - var type = $(this).data("sharing"); - - types[type]($(this)); - }) - }; - - return { - init: init - }; -}); diff --git a/theme/javascript/utils/storage.js b/theme/javascript/utils/storage.js deleted file mode 100755 index 57f5878..0000000 --- a/theme/javascript/utils/storage.js +++ /dev/null @@ -1,31 +0,0 @@ -define(function(){ - var baseKey = ""; - - /* - * Simple module for storing data in the browser's local storage - */ - return { - setBaseKey: function(key) { - baseKey = key; - }, - set: function(key, value) { - key = baseKey+":"+key; - localStorage[key] = JSON.stringify(value); - }, - get: function(key, def) { - key = baseKey+":"+key; - if (localStorage[key] === undefined) return def; - try { - var v = JSON.parse(localStorage[key]); - return v == null ? def : v;; - } catch(err) { - console.error(err); - return localStorage[key] || def; - } - }, - remove: function(key) { - key = baseKey+":"+key; - localStorage.removeItem(key); - } - }; -});
\ No newline at end of file diff --git a/theme/javascript/utils/url.js b/theme/javascript/utils/url.js deleted file mode 100644 index 0254299..0000000 --- a/theme/javascript/utils/url.js +++ /dev/null @@ -1,33 +0,0 @@ -define([ - "URIjs/URI" -], function(URI) { - // Joins path segments. Preserves initial "/" and resolves ".." and "." - // Does not support using ".." to go above/outside the root. - // This means that join("foo", "../../bar") will not resolve to "../bar" - function join(baseUrl, url) { - var theUrl = new URI(url); - if (theUrl.is("relative")) { - theUrl = theUrl.absoluteTo(baseUrl); - } - return theUrl.toString(); - } - - // A simple function to get the dirname of a path - // Trailing slashes are ignored. Leading slash is preserved. - function dirname(path) { - return join(path, ".."); - } - - // test if a path or url is absolute - function isAbsolute(path) { - if (!path) return false; - - return (path[0] == "/" || path.indexOf("http://") == 0 || path.indexOf("https://") == 0); - } - - return { - dirname: dirname, - join: join, - isAbsolute: isAbsolute - }; -})
\ No newline at end of file |