📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
qrmenuscriptigelismis.demodesign.com.tr
/
js
📝
my-app.js
← Geri Dön
// Initialize your app var myApp = new Framework7({ animateNavBackIcon: true, // Enable templates auto precompilation precompileTemplates: true, // Enabled pages rendering using Template7 swipeBackPage: false, swipePanelOnlyClose: true, pushState: true, template7Pages: true }); // Export selectors engine var $$ = Dom7; // Add main View var mainView = myApp.addView('.view-main', { // Enable dynamic Navbar dynamicNavbar: false, }); var subnaview = myApp.addView('.view-subnav'); $(document).ready(function() { $("#RegisterForm").validate(); $("#LoginForm").validate(); $("#ForgotForm").validate(); $(".close-popup").click(function() { $("label.error").hide(); }); $('.close_info_popup').click(function(e){ $('.info_popup').fadeOut(500); }); }); $$(document).on('pageInit', function (e) { $("#RegisterForm").validate(); $("#LoginForm").validate(); $("#ForgotForm").validate(); $(".close-popup").click(function() { $("label.error").hide(); }); }) myApp.onPageInit('music', function (page) { audiojs.events.ready(function() { var as = audiojs.createAll(); }); }) myApp.onPageInit('videos', function (page) { $(".videocontainer").fitVids(); }) myApp.onPageInit('contact', function (page) { $("#ContactForm").validate({ submitHandler: function(form) { ajaxContact(form); return false; } }); }) myApp.onPageInit('form', function (page) { $("#CustomForm").validate({ rules: { selectoptions: { required: true } }, messages: { selectoptions: "Please select one option" } }); var calendarDefault = myApp.calendar({ input: '#calendar-input', }); }) myApp.onPageInit('blog', function (page) { $(".posts li").hide(); size_li = $(".posts li").size(); x=4; $('.posts li:lt('+x+')').show(); $('#loadMore').click(function () { x= (x+1 <= size_li) ? x+1 : size_li; $('.posts li:lt('+x+')').show(); if(x == size_li){ $('#loadMore').hide(); $('#showLess').show(); } }); }) myApp.onPageInit('shop', function (page) { $('.qntyplusshop').click(function(e){ e.preventDefault(); var fieldName = $(this).attr('field'); var currentVal = parseInt($('input[name='+fieldName+']').val()); if (!isNaN(currentVal)) { $('input[name='+fieldName+']').val(currentVal + 1); } else { $('input[name='+fieldName+']').val(0); } }); $(".qntyminusshop").click(function(e) { e.preventDefault(); var fieldName = $(this).attr('field'); var currentVal = parseInt($('input[name='+fieldName+']').val()); if (!isNaN(currentVal) && currentVal > 0) { $('input[name='+fieldName+']').val(currentVal - 1); } else { $('input[name='+fieldName+']').val(0); } }); }) myApp.onPageInit('shopitem', function (page) { $(".swipebox").swipebox(); $('.qntyplusshop').click(function(e){ e.preventDefault(); var fieldName = $(this).attr('field'); var currentVal = parseInt($('input[name='+fieldName+']').val()); if (!isNaN(currentVal)) { $('input[name='+fieldName+']').val(currentVal + 1); } else { $('input[name='+fieldName+']').val(0); } }); $(".qntyminusshop").click(function(e) { e.preventDefault(); var fieldName = $(this).attr('field'); var currentVal = parseInt($('input[name='+fieldName+']').val()); if (!isNaN(currentVal) && currentVal > 0) { $('input[name='+fieldName+']').val(currentVal - 1); } else { $('input[name='+fieldName+']').val(0); } }); }) myApp.onPageInit('cart', function (page) { $('.item_delete').click(function(e){ e.preventDefault(); var currentVal = $(this).attr('id'); $('div#'+currentVal).fadeOut('slow'); }); }) myApp.onPageInit('photos', function (page) { $(".swipebox").swipebox(); $("a.switcher").bind("click", function(e){ e.preventDefault(); var theid = $(this).attr("id"); var theproducts = $("ul#photoslist"); var classNames = $(this).attr('class').split(' '); if($(this).hasClass("active")) { // if currently clicked button has the active class // then we do nothing! return false; } else { // otherwise we are clicking on the inactive button // and in the process of switching views! if(theid == "view13") { $(this).addClass("active"); $("#view11").removeClass("active"); $("#view11").children("img").attr("src","images/switch_11.png"); $("#view12").removeClass("active"); $("#view12").children("img").attr("src","images/switch_12.png"); var theimg = $(this).children("img"); theimg.attr("src","images/switch_13_active.png"); // remove the list class and change to grid theproducts.removeClass("photo_gallery_11"); theproducts.removeClass("photo_gallery_12"); theproducts.addClass("photo_gallery_13"); } else if(theid == "view12") { $(this).addClass("active"); $("#view11").removeClass("active"); $("#view11").children("img").attr("src","images/switch_11.png"); $("#view13").removeClass("active"); $("#view13").children("img").attr("src","images/switch_13.png"); var theimg = $(this).children("img"); theimg.attr("src","images/switch_12_active.png"); // remove the list class and change to grid theproducts.removeClass("photo_gallery_11"); theproducts.removeClass("photo_gallery_13"); theproducts.addClass("photo_gallery_12"); } else if(theid == "view11") { $("#view12").removeClass("active"); $("#view12").children("img").attr("src","images/switch_12.png"); $("#view13").removeClass("active"); $("#view13").children("img").attr("src","images/switch_13.png"); var theimg = $(this).children("img"); theimg.attr("src","images/switch_11_active.png"); // remove the list class and change to grid theproducts.removeClass("photo_gallery_12"); theproducts.removeClass("photo_gallery_13"); theproducts.addClass("photo_gallery_11"); } } }); }) myApp.onPageInit('chat', function (page) { // Conversation flag var conversationStarted = false; // Init Messages var myMessages = myApp.messages('.messages', { autoLayout:true }); // Init Messagebar var myMessagebar = myApp.messagebar('.messagebar'); // Handle message $$('.messagebar .link').on('click', function () { // Message text var messageText = myMessagebar.value().trim(); // Exit if empy message if (messageText.length === 0) return; // Empty messagebar myMessagebar.clear() // Random message type var messageType = (['sent', 'received'])[Math.round(Math.random())]; // Avatar and name for received message var avatar, name; if(messageType === 'received') { avatar = 'http://lorempixel.com/output/people-q-c-100-100-9.jpg'; name = 'Kate'; } // Add message myMessages.addMessage({ // Message text text: messageText, // Random message type type: messageType, // Avatar and name: avatar: avatar, name: name, // Day day: !conversationStarted ? 'Today' : false, time: !conversationStarted ? (new Date()).getHours() + ':' + (new Date()).getMinutes() : false }) // Update conversation flag conversationStarted = true; }); })
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula