From dc41c6bc0d0c5f6e1d64cb2a83b46037fd748902 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 17 Sep 2013 13:04:40 -0400 Subject: [PATCH] formatting - core client side --- public/src/ajaxify.js | 30 +++++++++++----------- public/src/templates.js | 40 +++++++++++++++-------------- public/src/utils.js | 56 +++++++++++++++++++++++++---------------- 3 files changed, 70 insertions(+), 56 deletions(-) diff --git a/public/src/ajaxify.js b/public/src/ajaxify.js index e25ceab420..5cf650703a 100644 --- a/public/src/ajaxify.js +++ b/public/src/ajaxify.js @@ -12,7 +12,7 @@ var ajaxify = {}; var events = []; ajaxify.register_events = function(new_page_events) { - for (var i = 0, ii = events.length; i/g) || []).join(''); // making sure the allowed arg is a string containing only tags in lowercase () - var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi, + var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi, commentsAndPhpTags = /|<\?(?:php)?[\s\S]*?\?>/gi; - return input.replace(commentsAndPhpTags, '').replace(tags, function ($0, $1) { + return input.replace(commentsAndPhpTags, '').replace(tags, function($0, $1) { return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : ''; }); }, buildMetaTags: function(tagsArr) { - var tags = '', + var tags = '', tag; - for(var x=0,numTags=tagsArr.length;x 0) tags += "\n\t"; tag = ' 0 ? '(' + numNotifications + ') ' : '') + title; + document.title = (numNotifications > 0 ? '(' + numNotifications + ') ' : '') + title; notificationIcon = notificationIcon || document.querySelector('.notifications a i'); if (numNotifications > 0 && notificationIcon) notificationIcon.className = 'icon-circle active'; }); @@ -150,8 +151,7 @@ badge .removeClass('badge-inverse') .addClass('badge-important') - } - else { + } else { badge .removeClass('badge-important') .addClass('badge-inverse') @@ -160,26 +160,34 @@ }, isRelativeUrl: function(url) { - var firstChar = url.slice(0, 1); + var firstChar = url.slice(0, 1); return (firstChar === '.' || firstChar === '/'); } } if (!String.prototype.trim) { - String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g, '');}; + String.prototype.trim = function() { + return this.replace(/^\s+|\s+$/g, ''); + }; } if (!String.prototype.ltrim) { - String.prototype.ltrim=function(){return this.replace(/^\s+/,'');}; + String.prototype.ltrim = function() { + return this.replace(/^\s+/, ''); + }; } if (!String.prototype.rtrim) { - String.prototype.rtrim=function(){return this.replace(/\s+$/,'');}; + String.prototype.rtrim = function() { + return this.replace(/\s+$/, ''); + }; } if (!String.prototype.fulltrim) { - String.prototype.fulltrim=function(){return this.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g,'').replace(/\s+/g,' ');}; + String.prototype.fulltrim = function() { + return this.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g, '').replace(/\s+/g, ' '); + }; } @@ -187,4 +195,8 @@ window.utils = module.exports; } -})('undefined' === typeof module ? {module:{exports:{}}} : module) \ No newline at end of file +})('undefined' === typeof module ? { + module: { + exports: {} + } +} : module) \ No newline at end of file