Skip to content

Instantly share code, notes, and snippets.

View shithee's full-sized avatar
:octocat:
On to Big thing.

Shitheesh shithee

:octocat:
On to Big thing.
View GitHub Profile
@shithee
shithee / query.sh
Created August 29, 2021 14:51
The Terminal codes required to build the production apk in the ionic capacitor project.
## Build the ionic app -- for production
ionic build
## Add android platform
ionic capacitor add android
## Sync the project for android
@shithee
shithee / One.js
Last active July 11, 2020 06:02
The one solution for date picker, multi selector with image and simple single page application with forward and backward options.
$(document).ready(function(){
var is_single = $("[data-onesingle]").data('onesingle');
var oneselector = $("[data-onepage]").data('onepage'); // selector for page load
oneselector = (oneselector) ? oneselector : 'a';
var globalcontainer = $("[data-onecontainer]").data('onecontainer'); // container where put loaded content
globalcontainer = (globalcontainer) ? globalcontainer : 'body';
var navigation = $("[data-navigation]").data('navigation'); // For remove active tag in menu
var loader = $("[data-oneloader]").data('oneloader');
if(is_single){
$(document).on("click", oneselector , function(e) {