Aralot (aralot) wrote in changelog,
Aralot
aralot
changelog

[livejournal] r18557: LJSUP-7762: old js code remove

Committer: szhirkov
LJSUP-7762: old js code remove
U   trunk/htdocs/js/talkpost.js
Modified: trunk/htdocs/js/talkpost.js
===================================================================
--- trunk/htdocs/js/talkpost.js	2011-03-15 11:06:17 UTC (rev 18556)
+++ trunk/htdocs/js/talkpost.js	2011-03-15 11:09:34 UTC (rev 18557)
@@ -62,6 +62,8 @@
 }
 
 function handleRadios(sel) {
+	return false;
+	
 	var currentRadio;
 	
     password.disabled = check_login.disabled = (sel != 2);
@@ -147,7 +149,7 @@
         }
     }
 
-    if (sel_pickw.disabled = (sel != 1)) {
+    if (sel_pickw.disabled == (sel != 1)) {
 		sel_pickw.value = '';
 	}
 }
@@ -330,3 +332,48 @@
 		elem.removeClass(highlightClass);
 	}
 }
+
+(function (window, $) {
+	var identityTypeSelect = (function () {
+		var settings = {
+			selectors: {
+				fakeRadios: 'input',
+				select: 'select',
+				identityControl: 'a.identity'
+			},
+			classNames: {
+				selectExpanded: 'expanded',
+				selectCollapsed: 'collapsed'
+			},
+			identityIdPrefix: 'identity-tg-'
+		};
+		
+		var _identitiesList = [], _container;
+		
+		function toggleIdentity(event) {
+			var identityName = $(this).attr('name');
+			
+			_container.attr('id', setting.identityIdPrefix + identityName);
+		}
+		
+		function collapseSelect() {}
+		
+		function expandSelect() {}
+		
+		return {
+			init: function (container, options) {
+				$.extend(true, settings, options);
+				
+				_container = $(container)
+					.delegate(settings.selectors.identityControl, 'click', toggleIdentity);
+			}
+		};
+	})();
+	
+	$.fn.identityTypeSelect = function (options) {
+		return this.each(function () {
+			identityTypeSelect.init(this, options);
+		});
+	};
+	
+})(this, jQuery);

Tags: aralot, js, livejournal
Subscribe

  • Post a new comment

    Error

    Anonymous comments are disabled in this journal

    default userpic

    Your reply will be screened

    Your IP address will be recorded 

  • 0 comments