Make debug mode a parameter, not a setting
This commit is contained in:
parent
852c9ad4fb
commit
fa6f108fe5
2 changed files with 11 additions and 10 deletions
10
index.html
10
index.html
|
@ -382,16 +382,6 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<form class="form-inline" role="form">
|
|
||||||
<div class="checkbox">
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" ng-model="debugMode">
|
|
||||||
Debug Mode
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
|
|
@ -624,6 +624,17 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
// Enable debug mode if "?debug=1" or "?debug=true" is set
|
||||||
|
(function() {
|
||||||
|
window.location.search.substring(1).split('&').forEach(function(f) {
|
||||||
|
var segs = f.split('=');
|
||||||
|
if (segs[0] === "debug" && ["true", "1"].indexOf(segs[1]) != -1) {
|
||||||
|
$rootScope.debugMode = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})();
|
||||||
|
|
||||||
|
|
||||||
$rootScope.isWindowFocused = function() {
|
$rootScope.isWindowFocused = function() {
|
||||||
if (typeof $scope.documentHidden === "undefined") {
|
if (typeof $scope.documentHidden === "undefined") {
|
||||||
|
|
Loading…
Reference in a new issue