Skip to content
Snippets Groups Projects
Commit bc2953b5 authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

split no_url_hashes into a separate repo

parent 198c9b40
No related branches found
No related tags found
No related merge requests found
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
ready(function () {
hash_set = function () {
};
hash_get = function () {
};
});
});
<?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;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment