| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | /* ========================================================== * sco.message.js * http://github.com/terebentina/sco.js * ========================================================== * Copyright 2013 Dan Caragea. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ========================================================== *//*jshint laxcomma:true, sub:true, browser:true, jquery:true, eqeqeq: false */;(function($, undefined) {	"use strict";	var pluginName = 'scojs_message';	$[pluginName] = function(message, type) {		clearTimeout($[pluginName].timeout);		var $selector = $('#' + $[pluginName].options.id);		if (!$selector.length) {			$selector = $('<div/>', {id: $[pluginName].options.id}).appendTo($[pluginName].options.appendTo);		}		$selector.html(message);		if (type === undefined || type == $[pluginName].TYPE_ERROR) {			$selector.removeClass($[pluginName].options.okClass).addClass($[pluginName].options.errClass);		} else if (type == $[pluginName].TYPE_OK) {			$selector.removeClass($[pluginName].options.errClass).addClass($[pluginName].options.okClass);		}		$selector.slideDown('fast', function() {			$[pluginName].timeout = setTimeout(function() { $selector.slideUp('fast'); }, $[pluginName].options.delay);		});	};	$.extend($[pluginName], {		options: {			 id: 'page_message'			,okClass: 'page_mess_ok'			,errClass: 'page_mess_error'			,animate: true			,delay: 4000			,appendTo: 'body'	// where should the modal be appended to (default to document.body). Added for unit tests, not really needed in real life.		},		TYPE_ERROR: 1,		TYPE_OK: 2	});})(jQuery);
 |