split no_url_hashes into a separate repo

This commit is contained in:
Andrew Dolgov 2021-03-05 09:55:28 +03:00
parent 198c9b4069
commit bc2953b5e7
2 changed files with 0 additions and 33 deletions

View File

@ -1,9 +0,0 @@
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
ready(function () {
hash_set = function () {
};
hash_get = function () {
};
});
});

View File

@ -1,24 +0,0 @@
<?php
class No_URL_Hashes extends Plugin {
private $host;
function about() {
return array(null,
"Disable URL hash usage (e.g. #f=10, etc)",
"fox");
}
function init($host) {
$this->host = $host;
}
function get_js() {
return file_get_contents(__DIR__ . "/init.js");
}
function api_version() {
return 2;
}
}