mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-11-20 11:14:28 +00:00
Merge branch '2.0.3-wip' of github.com:FortAwesome/Font-Awesome into 2.0.3-wip
This commit is contained in:
commit
a21ac2a323
@ -54,9 +54,18 @@ $(function() {
|
|||||||
|
|
||||||
var MainRouter = Backbone.Router.extend({
|
var MainRouter = Backbone.Router.extend({
|
||||||
routes: {
|
routes: {
|
||||||
|
"": "checkModal",
|
||||||
"icon/:iconName": "showIcon"
|
"icon/:iconName": "showIcon"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
checkModal: function() {
|
||||||
|
var $modal = $("div.modal");
|
||||||
|
|
||||||
|
if ($modal.length > 0) {
|
||||||
|
$modal.modal("hide");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
showIcon: function(iconName) {
|
showIcon: function(iconName) {
|
||||||
var $modal = $(mainView.modalTemplate({"iconName": iconName}));
|
var $modal = $(mainView.modalTemplate({"iconName": iconName}));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user