FIX #74
[euphorik.git] / js / fragment.js
index 23f22d0..4ffbf8f 100644 (file)
@@ -25,7 +25,7 @@ Fragment = function() {
    var replaceHtmlCode = function(str) {
       return str.replace(/%(\d\d)/g, function(text, code) {
          return String.fromCharCode(parseInt(code, 16));
-      })
+      });
    };
    this.fragments = {};
    if (!window.location.hash) {
@@ -38,7 +38,6 @@ Fragment = function() {
           thisFragment.fragments[tuple[0]] = JSON.parse(tuple[1]);
        });
    } catch(error) {
-      alert(error)
       ;; console.log(error);
    }
 };