Показать сообщение отдельно
  #1 (permalink)  
Старый 25.04.2012, 11:48
Аспирант
Отправить личное сообщение для Viper Посмотреть профиль Найти все сообщения от Viper
 
Регистрация: 27.09.2008
Сообщений: 88

Передача параметров в плагин и namespacing
Столкнулся с такой проблемой.
Есть начальный код плагина

;(function($, window, document, undefined){
	var text = '',
		methods = {
			init: function(text, options){
				options = $.extend({}, $.fn.myPlugin.defaultOptions, options);
				console.log(text);

				return this;
			}
		}

	$.fn.myPlugin = function(text, method){
		if (text != '') {
			// Тут беда
			return methods['init'].apply(this, Array.prototype.slice.call(arguments, 1));
		} else {
			if (methods[method]) {
				return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
			} else if (typeof method === 'object' || ! method) {
				return methods.init.apply(this, arguments);
			} else {
				$.error('Method ' +  method + ' does not exist!');
			}
		}
	}

	$.fn.myPlugin.defaultOptions = {
		param1: false
	}
})(jQuery, window, document);


И вызов
$('body').myPlugin('foo', 'options': {
	param1: true
});


В консоли получаю
Код:
missing ) after argument list
$('body').myPlugin('foo', 'options': {
Как можно передать таким образом параметры в плагин?
Ответить с цитированием