| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- </div>
- <script src="/js/jquery.finder.js"></script>
- <script type="text/javascript">
- lastScrollTop = 0;
- $(document).ready(function() {
- hover_menu();
- $(window).scroll(function(){hover_menu()});
- $('.l-sort-toolbar .sort-by').click(function(){
- $('.context-menu.sort-order').toggle();
- });
- //** SORTING **/
- /*
- var units_arr = $('.units .l-unit');
- var units = [];
- units_arr.each(function(i, elm){
- units[i] = {}
- units[i]['id'] = elm.id;
- units[i]['ip'] = parseInt($('#'+elm.id).find('.l-unit__ip').html().replace(/[^0-9]+/g,""));
- units[i]['name'] = $('#'+elm.id).find('.l-unit__name').attr('u_name');
- units[i]['date'] = parseInt($($('#'+elm.id).find('.l-unit__date')).attr('u_date'));
- });
- */
- /*jQuery('.ch-toggle').bind('change', function(evt) {
- evt.stopImmediatePropagation();
- console.log(123);
- });*/
- VE.core.register();
- if (location.href.search(/list/) != -1) {
- var shift_select_ref = $('body').finderSelect({children: '.l-unit',
- 'onFinish': function(evt) {
- /*var ref = $(evt.target);
- $('.l-content').find('.l-unit .ch-toggle').attr('checked', false);
- $('.l-content').find('.l-unit.selected .ch-toggle').attr('checked', true);
-
-
- if ($('.l-content').find('.l-unit.selected').length == $('.l-content').find('.l-unit').length) {
- $('.toggle-all').addClass('clicked-on');
- }*/
-
- },
- 'toggleAllHook': function() {
- /*if ($('.l-unit').length == $('.ch-toggle:checked').length) {
- $('.l-unit.selected').removeClass('selected');
- $('.ch-toggle').attr('checked', false);
- $('#toggle-all').attr('checked', false);
- }
- else {
- $('.ch-toggle').attr('checked', true);
- $('#toggle-all').attr('checked', true);
- }*/
- }
- });
- $('table').on('mousedown', 'td', function(e) {
- if (e.ctrlKey) {
- e.preventDefault();
- }
- });
- }
- });
- </script>
- </body>
- </html>
|