Created
July 11, 2013 08:41
-
-
Save watert/5973685 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Example: | |
<script src="bootstrap.quickform.js"></script> | |
<form id="test" class="form hide"> | |
<legend>Hello</legend> | |
<label for="">Something</label><input type="text" value="hello"> | |
</form> | |
<script> | |
var dom = $("#test"); | |
var config = { | |
title:"Hello World", | |
actions:{ | |
Save:function(){ | |
console.log("save"); | |
}, | |
Cancel:function(){ | |
dom.quickmodal("hide"); | |
} | |
} | |
}; | |
dom.quickmodal(config); | |
</script> | |
*/ | |
(function($,undefined){ | |
$.fn.quickmodal = function(config){ | |
var that = this, | |
$el = $(this); | |
if(typeof(config)=="string"){ | |
var domModal = $(that).data("quickmodal"); | |
if(!domModal)return false; | |
switch(config){ | |
case "data": | |
var data = domModal.data("data"); | |
break; | |
default: | |
domModal.modal(config); | |
} | |
return domModal; | |
} | |
var domModal = $("<div>",{"class":"modal hide"}); | |
config = $.extend({ | |
title:"Title", | |
actions:{ | |
Cancel:function(){ | |
domModal.modal("hide"); | |
} | |
}, | |
success:function(){ | |
} | |
},config); | |
domModal.data("data",config); | |
var html = '<div class="modal-header">' | |
+'<button type="button" class="close" data-dismiss="modal" ' | |
+'aria-hidden="true">×</button>' | |
+'<h3>'+config.title+'</h3></div>' | |
+'<div class="modal-body"></div>' | |
+'<div class="modal-footer"></div>'; | |
domModal.html(html); | |
domModal.find(".modal-body").append(that); | |
//append Actions | |
var footer = domModal.find(".modal-footer"); | |
$.each(config.actions,function(key,value){ | |
$("<button>",{type:"button","class":"btn",text:key}) | |
.click(value).appendTo(footer); | |
}); | |
domModal.modal("show"); | |
$el.data("quickmodal",domModal).show(); | |
return domModal; | |
}; | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment