فهرست منبع

Merge branch '2.0.3-wip' of github.com:FortAwesome/Font-Awesome into 2.0.3-wip

Dave Gandy 13 سال پیش
والد
کامیت
a21ac2a323
1فایلهای تغییر یافته به همراه9 افزوده شده و 0 حذف شده
  1. 9 0
      docs/assets/js/index/index.js

+ 9 - 0
docs/assets/js/index/index.js

@@ -54,9 +54,18 @@ $(function() {
 
   var MainRouter = Backbone.Router.extend({
     routes: {
+      "": "checkModal",
       "icon/:iconName": "showIcon"
     },
 
+    checkModal: function() {
+      var $modal = $("div.modal");
+      
+      if ($modal.length > 0) {
+        $modal.modal("hide");
+      }
+    },
+
     showIcon: function(iconName) {
       var $modal = $(mainView.modalTemplate({"iconName": iconName}));