Показать сообщение отдельно
  #3 (permalink)  
Старый 13.09.2013, 13:31
Интересующийся
Отправить личное сообщение для bogong Посмотреть профиль Найти все сообщения от bogong
 
Регистрация: 13.10.2011
Сообщений: 24

Разобрался ...
flags:{
		set:function(){
			for(var method in this){
				if(this.hasOwnProperty(method)&&method!=='set'){
					this[method]();
				}
			}
		},
		test0:function(){
			console.log("test0");
		},
		test1:function(){
			console.log("test1");
		},
		test2:function(){
			console.log("test2");
		},
		test3:function(){
			console.log("test3");
		},
		test4:function(){
			console.log("test4");
		}
	},
Ответить с цитированием