You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
236 lines
5.9 KiB
236 lines
5.9 KiB
/******/ (function(modules) { // webpackBootstrap
|
|
/******/ // The module cache
|
|
/******/ var installedModules = {};
|
|
|
|
/******/ // The require function
|
|
/******/ function __webpack_require__(moduleId) {
|
|
|
|
/******/ // Check if module is in cache
|
|
/******/ if(installedModules[moduleId])
|
|
/******/ return installedModules[moduleId].exports;
|
|
|
|
/******/ // Create a new module (and put it into the cache)
|
|
/******/ var module = installedModules[moduleId] = {
|
|
/******/ exports: {},
|
|
/******/ id: moduleId,
|
|
/******/ loaded: false
|
|
/******/ };
|
|
|
|
/******/ // Execute the module function
|
|
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
|
|
/******/ // Flag the module as loaded
|
|
/******/ module.loaded = true;
|
|
|
|
/******/ // Return the exports of the module
|
|
/******/ return module.exports;
|
|
/******/ }
|
|
|
|
|
|
/******/ // expose the modules object (__webpack_modules__)
|
|
/******/ __webpack_require__.m = modules;
|
|
|
|
/******/ // expose the module cache
|
|
/******/ __webpack_require__.c = installedModules;
|
|
|
|
/******/ // __webpack_public_path__
|
|
/******/ __webpack_require__.p = "";
|
|
|
|
/******/ // Load entry module and return exports
|
|
/******/ return __webpack_require__(0);
|
|
/******/ })
|
|
/************************************************************************/
|
|
/******/ ([
|
|
/* 0 */
|
|
/***/ function(module, exports, __webpack_require__) {
|
|
|
|
'use strict';
|
|
|
|
var _show_hide = __webpack_require__(15);
|
|
|
|
var _bootstrap_tabs = __webpack_require__(16);
|
|
|
|
var _sort_by = __webpack_require__(17);
|
|
|
|
var _custom_check = __webpack_require__(1);
|
|
|
|
$(function () {
|
|
(0, _bootstrap_tabs.restoreTab)();
|
|
(0, _bootstrap_tabs.tabsHashInit)();
|
|
(0, _custom_check.customCheckInit)();
|
|
window.toggler = _show_hide.toggler;
|
|
window.sortRealtyBy = _sort_by.sortRealtyBy;
|
|
// on load of the page: switch to the currently selected tab
|
|
});
|
|
|
|
/***/ },
|
|
/* 1 */
|
|
/***/ function(module, exports) {
|
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
function customCheckInit() {
|
|
function tuneCheckBoxes($boxes) {
|
|
var currentState = $boxes.find("input").prop("checked") ? 'checked' : 'not-checked';
|
|
$boxes.find("div").hide();
|
|
$boxes.find("div." + currentState).show();
|
|
}
|
|
|
|
var $boxes = $('.custom-check');
|
|
tuneCheckBoxes($boxes);
|
|
$boxes.on("click", function (e) {
|
|
var inside_checkBox = $(e.target).parent().find("input");
|
|
inside_checkBox.prop("checked", !inside_checkBox.prop("checked"));
|
|
tuneCheckBoxes($boxes);
|
|
e.preventDefault();
|
|
return false;
|
|
});
|
|
}
|
|
|
|
exports.customCheckInit = customCheckInit;
|
|
|
|
/***/ },
|
|
/* 2 */,
|
|
/* 3 */,
|
|
/* 4 */,
|
|
/* 5 */,
|
|
/* 6 */
|
|
/***/ function(module, exports) {
|
|
|
|
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
function getCookie(name) {
|
|
var cookieValue = null;
|
|
if (document.cookie && document.cookie != '') {
|
|
var cookies = document.cookie.split(';');
|
|
for (var i = 0; i < cookies.length; i++) {
|
|
var cookie = jQuery.trim(cookies[i]);
|
|
if (cookie.substring(0, name.length + 1) == name + '=') {
|
|
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return cookieValue;
|
|
}
|
|
|
|
function humanFileSize(bytes, si) {
|
|
var thresh = si ? 1000 : 1024;
|
|
|
|
if (Math.abs(bytes) < thresh) return bytes + ' B';
|
|
|
|
var units = si ? ['kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'] : ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'];
|
|
|
|
var u = -1;
|
|
|
|
do {
|
|
bytes /= thresh;
|
|
++u;
|
|
} while (Math.abs(bytes) >= thresh && u < units.length - 1);
|
|
|
|
return bytes.toFixed(1) + ' ' + units[u];
|
|
}
|
|
|
|
exports.humanFileSize = humanFileSize;
|
|
exports.getCookie = getCookie;
|
|
|
|
/***/ },
|
|
/* 7 */,
|
|
/* 8 */,
|
|
/* 9 */,
|
|
/* 10 */,
|
|
/* 11 */,
|
|
/* 12 */,
|
|
/* 13 */,
|
|
/* 14 */,
|
|
/* 15 */
|
|
/***/ function(module, exports) {
|
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
function toggler(from, divId) {
|
|
$(from).toggleClass("clicked");
|
|
$("#" + divId).toggle();
|
|
}
|
|
|
|
exports.toggler = toggler;
|
|
|
|
/***/ },
|
|
/* 16 */
|
|
/***/ function(module, exports) {
|
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
function tabsHashInit() {
|
|
// store the currently selected tab in the hash value
|
|
$("a[data-toggle=tab]").on("shown.bs.tab", function (e) {
|
|
var target = $(e.target);
|
|
if (target.hasClass("tab-inserted")) {
|
|
target.siblings(".active").removeClass("active");
|
|
target.addClass("active");
|
|
return;
|
|
}
|
|
var id = target.attr("href").substr(1);
|
|
var scrollmem = $('body').scrollTop() || $('html').scrollTop();
|
|
window.location.hash = id;
|
|
$('html,body').scrollTop(scrollmem);
|
|
});
|
|
}
|
|
|
|
function restoreTab() {
|
|
// on load of the page: switch to the currently selected tab
|
|
var hash = window.location.hash;
|
|
var a = $("a[data-toggle=\"tab\"][href=\"" + hash + "\"]");
|
|
hash && a.tab('show');
|
|
}
|
|
|
|
exports.tabsHashInit = tabsHashInit;
|
|
exports.restoreTab = restoreTab;
|
|
|
|
/***/ },
|
|
/* 17 */
|
|
/***/ function(module, exports, __webpack_require__) {
|
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.sortRealtyBy = undefined;
|
|
|
|
var _utils = __webpack_require__(6);
|
|
|
|
function sortRealtyBy(data, container_id) {
|
|
console.log("sort_by = ", data);
|
|
console.log("container_id = ", container_id);
|
|
var url = '/objects/sort/';
|
|
$.ajax({
|
|
url: url,
|
|
type: 'POST',
|
|
data: data,
|
|
beforeSend: function beforeSend(xhr) {
|
|
xhr.setRequestHeader("X-CSRFToken", (0, _utils.getCookie)('csrftoken'));
|
|
},
|
|
success: function success(data) {
|
|
$(container_id).html(data);
|
|
// console.log("data = ", data);
|
|
}
|
|
});
|
|
}
|
|
|
|
exports.sortRealtyBy = sortRealtyBy;
|
|
|
|
/***/ }
|
|
/******/ ]); |