popup.js
325 Bytes
/**
* founder : zzf
* Creation time : 2015/3/16
*/
define(function( require, exports, module ) {
var Pophint = require( 'pophint' );
$(".alert").click(function(){
new Pophint(this, {
content : "测试数据"
});
});
$(".msg").fancybox({
padding: 20
});
});