starting mobile version
This commit is contained in:
parent
9fce4b69de
commit
d102919289
|
|
@ -79,7 +79,7 @@ class EventCheckoutController extends Controller
|
|||
return redirect()->back();
|
||||
}
|
||||
|
||||
return view('Bilettm.ViewEvent.SeatsPage',compact('event','tickets'));
|
||||
return view('desktop.ViewEvent.SeatsPage',compact('event','tickets'));
|
||||
}
|
||||
/**
|
||||
* Validate a ticket request. If successful reserve the tickets and redirect to checkout
|
||||
|
|
@ -478,7 +478,7 @@ class EventCheckoutController extends Controller
|
|||
}
|
||||
|
||||
// return view('Public.ViewEvent.EventPageCheckout', $data);
|
||||
return view('Bilettm.ViewEvent.CheckoutPage', $data);
|
||||
return view('desktop.ViewEvent.CheckoutPage', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -542,7 +542,7 @@ class EventCheckoutController extends Controller
|
|||
'amount' => $orderService->getGrandTotal()*100,//multiply by 100 to obtain tenge
|
||||
'currency' => 934,
|
||||
'sessionTimeoutSecs' => $secondsToExpire,
|
||||
'description' => 'Bilettm sargyt: ' . $request->get('order_email'),
|
||||
'description' => 'desktop sargyt: ' . $request->get('order_email'),
|
||||
'orderNumber' => uniqid(),
|
||||
|
||||
'failUrl' => route('showEventCheckoutPaymentReturn', [
|
||||
|
|
@ -640,11 +640,11 @@ class EventCheckoutController extends Controller
|
|||
|
||||
public function mobileCheckoutPaymentReturn(Request $request, $event_id){
|
||||
if ($request->get('is_payment_cancelled') == '1') {
|
||||
return view('Bilettm.Mobile.CheckoutFailed',['message'=>'Toleg besedildi']);
|
||||
return view('mobile.CheckoutFailed',['message'=>'Toleg besedildi']);
|
||||
}
|
||||
|
||||
if(!$request->has('orderId')){
|
||||
return view('Bilettm.Mobile.CheckoutFailed',['message'=>'order id yok']);
|
||||
return view('mobile.CheckoutFailed',['message'=>'order id yok']);
|
||||
}
|
||||
|
||||
$response = $this->gateway->getPaymentStatus($request->get('orderId'));
|
||||
|
|
@ -652,7 +652,7 @@ class EventCheckoutController extends Controller
|
|||
if ($response->isSuccessfull()) {
|
||||
return $this->mobileCompleteOrder($event_id,$request->get('orderId'));
|
||||
} else {
|
||||
return view('Bilettm.Mobile.CheckoutFailed',['message'=>$response->errorMessage()]);
|
||||
return view('mobile.CheckoutFailed',['message'=>$response->errorMessage()]);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -892,7 +892,7 @@ class EventCheckoutController extends Controller
|
|||
return view('Public.ViewEvent.Embedded.EventPageViewOrder', $data);
|
||||
}
|
||||
|
||||
return view('Bilettm.ViewEvent.ViewOrderPage', $data);
|
||||
return view('desktop.ViewEvent.ViewOrderPage', $data);
|
||||
// return view('Public.ViewEvent.EventPageViewOrder', $data);
|
||||
}
|
||||
|
||||
|
|
@ -1027,7 +1027,7 @@ class EventCheckoutController extends Controller
|
|||
Log::error($ex);
|
||||
DB::rollBack();
|
||||
|
||||
return view('Bilettm.Mobile.CheckoutFailed',
|
||||
return view('mobile.CheckoutFailed',
|
||||
['message' => $ex->getMessage()]
|
||||
);
|
||||
}
|
||||
|
|
@ -1046,7 +1046,7 @@ class EventCheckoutController extends Controller
|
|||
'tickets' => $order->event->tickets,
|
||||
'is_embedded' => $this->is_embedded,
|
||||
];
|
||||
return view('Bilettm.Mobile.CheckoutSuccess', $data);
|
||||
return view('mobile.CheckoutSuccess', $data);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ class EventViewController extends Controller
|
|||
}
|
||||
}
|
||||
|
||||
return view('Bilettm.ViewEvent.EventPage', $data);
|
||||
return view('desktop.ViewEvent.EventPage', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ class PublicController extends Controller
|
|||
|
||||
$sliders = Slider::where('active',1)->get();
|
||||
//dd($cinema->events->first());
|
||||
return view('Bilettm.Public.HomePage')->with([
|
||||
return view('desktop.Public.HomePage')->with([
|
||||
'cinema' => $cinema,
|
||||
'cartoon' => $cartoon,
|
||||
'musical' => $musical,
|
||||
|
|
@ -66,7 +66,7 @@ class PublicController extends Controller
|
|||
->get();
|
||||
|
||||
|
||||
return view("Bilettm.Public.EventsPage")->with($data);
|
||||
return view("desktop.Public.EventsPage")->with($data);
|
||||
}
|
||||
|
||||
public function showSubCategoryEvents($cat_id){
|
||||
|
|
@ -82,7 +82,7 @@ class PublicController extends Controller
|
|||
->orderBy($order['field'],$order['order'])
|
||||
->paginate(16);
|
||||
|
||||
return view("Bilettm.Public.CategoryEventsPage")->with($data);
|
||||
return view("desktop.Public.CategoryEventsPage")->with($data);
|
||||
}
|
||||
|
||||
private function sorts_filters(){
|
||||
|
|
@ -112,11 +112,12 @@ class PublicController extends Controller
|
|||
->orWhere('title_tk','like',"%{$query}%")
|
||||
->paginate(10);
|
||||
|
||||
return view('Bilettm.Public.SearchResults')
|
||||
return view('desktop.Public.SearchResults')
|
||||
->with([
|
||||
'events' => $events,
|
||||
'query' => $query
|
||||
]);
|
||||
|
||||
}
|
||||
|
||||
public function postAddEvent(AddEventRequest $request){
|
||||
|
|
@ -127,7 +128,7 @@ class PublicController extends Controller
|
|||
'phone' => sanitise($request->get('phone')),
|
||||
'detail' => sanitise($request->get('detail'))
|
||||
]);
|
||||
return view('Bilettm.Public.AddEventResult',compact('addEvent'));
|
||||
return view('desktop.Public.AddEventResult',compact('addEvent'));
|
||||
}
|
||||
|
||||
public function subscribe(SubscribeRequest $request){
|
||||
|
|
|
|||
|
|
@ -493,7 +493,6 @@ ICSTemplate;
|
|||
public function scopeOnLive($query, $start_date = null, $end_date = null){
|
||||
//if date is null carbon creates now date instance
|
||||
//todo what if only end date is null??
|
||||
dd($start_date,$end_date);
|
||||
if(!empty($start_date) && !empty($end_date))
|
||||
{
|
||||
$query->where('start_date','<',$end_date)
|
||||
|
|
|
|||
|
|
@ -46,7 +46,8 @@
|
|||
"backpack/settings": "~2.1",
|
||||
"backpack/pagemanager": "~1.1",
|
||||
"backpack/permissionmanager": "~4.0",
|
||||
"davejamesmiller/laravel-breadcrumbs": "5.3"
|
||||
"davejamesmiller/laravel-breadcrumbs": "5.3",
|
||||
"jenssegers/agent": "^2.6"
|
||||
|
||||
|
||||
},
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "dd6b89fae3c387484849f512aab37d9b",
|
||||
"content-hash": "da3d5d1ace32a92a7b2210f162402434",
|
||||
"packages": [
|
||||
{
|
||||
"name": "almasaeed2010/adminlte",
|
||||
|
|
@ -2610,6 +2610,124 @@
|
|||
"description": "Highlight PHP code in terminal",
|
||||
"time": "2018-09-29T18:48:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "jaybizzle/crawler-detect",
|
||||
"version": "v1.2.92",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/JayBizzle/Crawler-Detect.git",
|
||||
"reference": "eb167049d7de1e5320138186b9dcb2e5f9df260d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/eb167049d7de1e5320138186b9dcb2e5f9df260d",
|
||||
"reference": "eb167049d7de1e5320138186b9dcb2e5f9df260d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^4.8|^5.5|^6.5",
|
||||
"satooshi/php-coveralls": "1.*"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Jaybizzle\\CrawlerDetect\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Mark Beech",
|
||||
"email": "m@rkbee.ch",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
|
||||
"homepage": "https://github.com/JayBizzle/Crawler-Detect/",
|
||||
"keywords": [
|
||||
"crawler",
|
||||
"crawler detect",
|
||||
"crawler detector",
|
||||
"crawlerdetect",
|
||||
"php crawler detect"
|
||||
],
|
||||
"time": "2020-02-07T20:28:07+00:00"
|
||||
},
|
||||
{
|
||||
"name": "jenssegers/agent",
|
||||
"version": "v2.6.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jenssegers/agent.git",
|
||||
"reference": "bcb895395e460478e101f41cdab139c48dc721ce"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/jenssegers/agent/zipball/bcb895395e460478e101f41cdab139c48dc721ce",
|
||||
"reference": "bcb895395e460478e101f41cdab139c48dc721ce",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"jaybizzle/crawler-detect": "^1.2",
|
||||
"mobiledetect/mobiledetectlib": "^2.7.6",
|
||||
"php": ">=5.6"
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^2.1",
|
||||
"phpunit/phpunit": "^5.0|^6.0|^7.0"
|
||||
},
|
||||
"suggest": {
|
||||
"illuminate/support": "^4.0|^5.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "3.0-dev"
|
||||
},
|
||||
"laravel": {
|
||||
"providers": [
|
||||
"Jenssegers\\Agent\\AgentServiceProvider"
|
||||
],
|
||||
"aliases": {
|
||||
"Agent": "Jenssegers\\Agent\\Facades\\Agent"
|
||||
}
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Jenssegers\\Agent\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jens Segers",
|
||||
"homepage": "https://jenssegers.com"
|
||||
}
|
||||
],
|
||||
"description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
|
||||
"homepage": "https://github.com/jenssegers/agent",
|
||||
"keywords": [
|
||||
"Agent",
|
||||
"browser",
|
||||
"desktop",
|
||||
"laravel",
|
||||
"mobile",
|
||||
"platform",
|
||||
"user agent",
|
||||
"useragent"
|
||||
],
|
||||
"time": "2019-01-19T21:32:55+00:00"
|
||||
},
|
||||
{
|
||||
"name": "jenssegers/date",
|
||||
"version": "v3.5.0",
|
||||
|
|
@ -3771,6 +3889,58 @@
|
|||
],
|
||||
"time": "2017-07-28T00:33:38+00:00"
|
||||
},
|
||||
{
|
||||
"name": "mobiledetect/mobiledetectlib",
|
||||
"version": "2.8.34",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/serbanghita/Mobile-Detect.git",
|
||||
"reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
|
||||
"reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.0.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~4.8.35||~5.7"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"Mobile_Detect.php"
|
||||
],
|
||||
"psr-0": {
|
||||
"Detection": "namespaced/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Serban Ghita",
|
||||
"email": "serbanghita@gmail.com",
|
||||
"homepage": "http://mobiledetect.net",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
|
||||
"homepage": "https://github.com/serbanghita/Mobile-Detect",
|
||||
"keywords": [
|
||||
"detect mobile devices",
|
||||
"mobile",
|
||||
"mobile detect",
|
||||
"mobile detector",
|
||||
"php mobile detect"
|
||||
],
|
||||
"time": "2019-09-18T18:44:20+00:00"
|
||||
},
|
||||
{
|
||||
"name": "moneyphp/money",
|
||||
"version": "v3.2.1",
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ return [
|
|||
*/
|
||||
|
||||
// Project name. Shown in the breadcrumbs and a few other places.
|
||||
'project_name' => 'Bilettm',
|
||||
'project_name' => 'desktop',
|
||||
|
||||
// Menu logos
|
||||
'logo_lg' => '<b>Bilet</b>tm',
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'view' => 'Bilettm.Partials.BreadCrumbs',
|
||||
'view' => 'desktop.Partials.BreadCrumbs',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -893,7 +893,7 @@ window.Modernizr = (function( window, document, undefined ) {
|
|||
// Safari 2-4 allows the smiley as a value, despite making a slider
|
||||
bool = defaultView.getComputedStyle &&
|
||||
defaultView.getComputedStyle(inputElem, null).WebkitAppearance !== 'textfield' &&
|
||||
// Mobile android web browser has false positive, so must
|
||||
// mobile android web browser has false positive, so must
|
||||
// check the height to see if the widget is actually there.
|
||||
(inputElem.offsetHeight !== 0);
|
||||
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ body {
|
|||
}
|
||||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -11158,7 +11158,7 @@ elFinder.prototype._options = {
|
|||
minWidth : 150,
|
||||
maxWidth : 500,
|
||||
// auto hide on initial open
|
||||
autoHideUA: [] // e.g. ['Mobile']
|
||||
autoHideUA: [] // e.g. ['mobile']
|
||||
},
|
||||
navdock : {
|
||||
// disabled navdock ui
|
||||
|
|
@ -11172,7 +11172,7 @@ elFinder.prototype._options = {
|
|||
// display parent folder with ".." name :)
|
||||
oldSchool : false,
|
||||
|
||||
// fm.UA types array to show item select checkboxes e.g. ['All'] or ['Mobile'] etc. default: ['Touch']
|
||||
// fm.UA types array to show item select checkboxes e.g. ['All'] or ['mobile'] etc. default: ['Touch']
|
||||
showSelectCheckboxUA : ['Touch'],
|
||||
|
||||
// file info columns displayed
|
||||
|
|
|
|||
|
|
@ -9421,7 +9421,7 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
|||
var doc;
|
||||
|
||||
if ( jQuery.isWindow( elem ) ) {
|
||||
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
|
||||
// As of 5/8/2012 this will yield incorrect results for mobile Safari, but there
|
||||
// isn't a whole lot we can do. See pull request at this URL for discussion:
|
||||
// https://github.com/jquery/jquery/pull/764
|
||||
return elem.document.documentElement[ "client" + name ];
|
||||
|
|
|
|||
|
|
@ -176,7 +176,7 @@ input[type="search"] {
|
|||
|
||||
// Special styles for iOS temporal inputs
|
||||
//
|
||||
// In Mobile Safari, setting `display: block` on temporal inputs causes the
|
||||
// In mobile Safari, setting `display: block` on temporal inputs causes the
|
||||
// text within the input to become vertically misaligned. As a workaround, we
|
||||
// set a pixel line-height that matches the given height of the input, but only
|
||||
// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
|
||||
|
|
|
|||
|
|
@ -132,22 +132,22 @@
|
|||
mask: "+32(46#)##-##-##",
|
||||
cc: "BE",
|
||||
cd: "Belgium",
|
||||
city: "Mobile Phones"
|
||||
city: "mobile Phones"
|
||||
}, {
|
||||
mask: "+32(47#)##-##-##",
|
||||
cc: "BE",
|
||||
cd: "Belgium",
|
||||
city: "Mobile Phones"
|
||||
city: "mobile Phones"
|
||||
}, {
|
||||
mask: "+32(48#)##-##-##",
|
||||
cc: "BE",
|
||||
cd: "Belgium",
|
||||
city: "Mobile Phones"
|
||||
city: "mobile Phones"
|
||||
}, {
|
||||
mask: "+32(49#)##-##-##",
|
||||
cc: "BE",
|
||||
cd: "Belgium",
|
||||
city: "Mobile Phones"
|
||||
city: "mobile Phones"
|
||||
}, {
|
||||
mask: "+32(461)8#-##-##",
|
||||
cc: "BE",
|
||||
|
|
|
|||
|
|
@ -9389,7 +9389,7 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
|||
var doc;
|
||||
|
||||
if ( jQuery.isWindow( elem ) ) {
|
||||
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
|
||||
// As of 5/8/2012 this will yield incorrect results for mobile Safari, but there
|
||||
// isn't a whole lot we can do. See pull request at this URL for discussion:
|
||||
// https://github.com/jquery/jquery/pull/764
|
||||
return elem.document.documentElement[ "client" + name ];
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -9020,7 +9020,7 @@
|
|||
var doc;
|
||||
|
||||
if ( jQuery.isWindow( elem ) ) {
|
||||
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
|
||||
// As of 5/8/2012 this will yield incorrect results for mobile Safari, but there
|
||||
// isn't a whole lot we can do. See pull request at this URL for discussion:
|
||||
// https://github.com/jquery/jquery/pull/764
|
||||
return elem.document.documentElement[ "client" + name ];
|
||||
|
|
|
|||
|
|
@ -176,7 +176,7 @@ input[type="search"] {
|
|||
|
||||
// Special styles for iOS temporal inputs
|
||||
//
|
||||
// In Mobile Safari, setting `display: block` on temporal inputs causes the
|
||||
// In mobile Safari, setting `display: block` on temporal inputs causes the
|
||||
// text within the input to become vertically misaligned. As a workaround, we
|
||||
// set a pixel line-height that matches the given height of the input, but only
|
||||
// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
|
||||
|
|
|
|||
|
|
@ -4243,7 +4243,7 @@ wysihtml5.browser = (function() {
|
|||
hasEditingApiSupport = document.execCommand && document.queryCommandSupported && document.queryCommandState,
|
||||
// document selector apis are only supported by IE 8+, Safari 4+, Chrome and Firefox 3.5+
|
||||
hasQuerySelectorSupport = document.querySelector && document.querySelectorAll,
|
||||
// contentEditable is unusable in mobile browsers (tested iOS 4.2.2, Android 2.2, Opera Mobile, WebOS 3.05)
|
||||
// contentEditable is unusable in mobile browsers (tested iOS 4.2.2, Android 2.2, Opera mobile, WebOS 3.05)
|
||||
isIncompatibleMobileBrowser = (this.isIos() && iosVersion(userAgent) < 5) || (this.isAndroid() && androidVersion(userAgent) < 4) || userAgent.indexOf("opera mobi") !== -1 || userAgent.indexOf("hpwos/") !== -1;
|
||||
return hasContentEditableSupport
|
||||
&& hasEditingApiSupport
|
||||
|
|
|
|||
|
|
@ -458,7 +458,7 @@
|
|||
* These styles alter Select2's default background-position of 100%
|
||||
* and supply the new background-position syntax to browsers which support it:
|
||||
*
|
||||
* 1. Android, Safari < 6/Mobile, IE<9: change to a relative background-position of 99%
|
||||
* 1. Android, Safari < 6/mobile, IE<9: change to a relative background-position of 99%
|
||||
* 2. Chrome 25+, Firefox 13+, IE 9+, Opera 10.5+: use the new CSS3-background-position syntax
|
||||
*
|
||||
* @see http://www.w3.org/TR/css3-background/#background-position
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ input[type="search"] {
|
|||
|
||||
// Special styles for iOS temporal inputs
|
||||
//
|
||||
// In Mobile Safari, setting `display: block` on temporal inputs causes the
|
||||
// In mobile Safari, setting `display: block` on temporal inputs causes the
|
||||
// text within the input to become vertically misaligned.
|
||||
// As a workaround, we set a pixel line-height that matches the
|
||||
// given height of the input. Since this fucks up everything else, we have to
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
module.exports = function(grunt)
|
||||
{
|
||||
var sBanner = '/* ----------------------------------------------------------------------------- ' +
|
||||
'\n\n jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile' +
|
||||
'\n\n jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile' +
|
||||
'\n Version <%= pkg.version %>' +
|
||||
'\n Copyright (c)2014-<%= grunt.template.today("yyyy") %> Lajpat Shah' +
|
||||
'\n Contributors : https://github.com/nehakadam/DateTimePicker/contributors' +
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.17
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.17
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
|
|
|
|||
|
|
@ -325,13 +325,13 @@
|
|||
|
||||
/* SUPPORTS FIXED POSITION?
|
||||
*
|
||||
* Based on code from jQuery Mobile 1.1.0
|
||||
* Based on code from jQuery mobile 1.1.0
|
||||
* http://jquerymobile.com/
|
||||
*
|
||||
* In a nutshell, we need to figure out if fixed positioning is supported.
|
||||
* Unfortunately, this is very difficult to do on iOS, and usually involves
|
||||
* injecting content, scrolling the page, etc.. It's ugly.
|
||||
* jQuery Mobile uses this workaround. It's not ideal, but works.
|
||||
* jQuery mobile uses this workaround. It's not ideal, but works.
|
||||
*
|
||||
* Modified to detect IE6
|
||||
* ========================= */
|
||||
|
|
@ -360,7 +360,7 @@
|
|||
//Android lte 2.1: Platform is Android and Webkit version is less than 533 (Android 2.2)
|
||||
(ua.indexOf( "Android" ) > -1 && wkversion && wkversion < 533) ||
|
||||
|
||||
// Firefox Mobile before 6.0 -
|
||||
// Firefox mobile before 6.0 -
|
||||
(ffversion && ffversion < 6) ||
|
||||
|
||||
// WebOS less than 3
|
||||
|
|
|
|||
|
|
@ -9421,7 +9421,7 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
|||
var doc;
|
||||
|
||||
if ( jQuery.isWindow( elem ) ) {
|
||||
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
|
||||
// As of 5/8/2012 this will yield incorrect results for mobile Safari, but there
|
||||
// isn't a whole lot we can do. See pull request at this URL for discussion:
|
||||
// https://github.com/jquery/jquery/pull/764
|
||||
return elem.document.documentElement[ "client" + name ];
|
||||
|
|
|
|||
|
|
@ -329,13 +329,13 @@
|
|||
|
||||
/* SUPPORTS FIXED POSITION?
|
||||
*
|
||||
* Based on code from jQuery Mobile 1.1.0
|
||||
* Based on code from jQuery mobile 1.1.0
|
||||
* http://jquerymobile.com/
|
||||
*
|
||||
* In a nutshell, we need to figure out if fixed positioning is supported.
|
||||
* Unfortunately, this is very difficult to do on iOS, and usually involves
|
||||
* injecting content, scrolling the page, etc.. It's ugly.
|
||||
* jQuery Mobile uses this workaround. It's not ideal, but works.
|
||||
* jQuery mobile uses this workaround. It's not ideal, but works.
|
||||
*
|
||||
* Modified to detect IE6
|
||||
* ========================= */
|
||||
|
|
@ -364,7 +364,7 @@
|
|||
//Android lte 2.1: Platform is Android and Webkit version is less than 533 (Android 2.2)
|
||||
(ua.indexOf( "Android" ) > -1 && wkversion && wkversion < 533) ||
|
||||
|
||||
// Firefox Mobile before 6.0 -
|
||||
// Firefox mobile before 6.0 -
|
||||
(ffversion && ffversion < 6) ||
|
||||
|
||||
// WebOS less than 3
|
||||
|
|
|
|||
|
|
@ -6280,7 +6280,7 @@ var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
|||
this._enhance();
|
||||
},
|
||||
|
||||
// To support the enhanced option in jQuery Mobile, we isolate DOM manipulation
|
||||
// To support the enhanced option in jQuery mobile, we isolate DOM manipulation
|
||||
_enhance: function() {
|
||||
this.element.attr( "role", "toolbar" );
|
||||
this.refresh();
|
||||
|
|
@ -6650,7 +6650,7 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
|
|||
}
|
||||
},
|
||||
|
||||
// Support jQuery Mobile enhanced option
|
||||
// Support jQuery mobile enhanced option
|
||||
_enhance: function() {
|
||||
this._updateIcon( this.element[ 0 ].checked );
|
||||
},
|
||||
|
|
@ -6831,7 +6831,7 @@ $.widget( "ui.button", {
|
|||
_getCreateOptions: function() {
|
||||
var disabled,
|
||||
|
||||
// This is to support cases like in jQuery Mobile where the base widget does have
|
||||
// This is to support cases like in jQuery mobile where the base widget does have
|
||||
// an implementation of _getCreateOptions
|
||||
options = this._super() || {};
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ $.widget( "ui.button", {
|
|||
_getCreateOptions: function() {
|
||||
var disabled,
|
||||
|
||||
// This is to support cases like in jQuery Mobile where the base widget does have
|
||||
// This is to support cases like in jQuery mobile where the base widget does have
|
||||
// an implementation of _getCreateOptions
|
||||
options = this._super() || {};
|
||||
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
|
|||
}
|
||||
},
|
||||
|
||||
// Support jQuery Mobile enhanced option
|
||||
// Support jQuery mobile enhanced option
|
||||
_enhance: function() {
|
||||
this._updateIcon( this.element[ 0 ].checked );
|
||||
},
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ return $.widget( "ui.controlgroup", {
|
|||
this._enhance();
|
||||
},
|
||||
|
||||
// To support the enhanced option in jQuery Mobile, we isolate DOM manipulation
|
||||
// To support the enhanced option in jQuery mobile, we isolate DOM manipulation
|
||||
_enhance: function() {
|
||||
this.element.attr( "role", "toolbar" );
|
||||
this.refresh();
|
||||
|
|
|
|||
|
|
@ -9113,7 +9113,7 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
|||
var doc;
|
||||
|
||||
if ( jQuery.isWindow( elem ) ) {
|
||||
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
|
||||
// As of 5/8/2012 this will yield incorrect results for mobile Safari, but there
|
||||
// isn't a whole lot we can do. See pull request at this URL for discussion:
|
||||
// https://github.com/jquery/jquery/pull/764
|
||||
return elem.document.documentElement[ "client" + name ];
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
|||
var doc;
|
||||
|
||||
if ( jQuery.isWindow( elem ) ) {
|
||||
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
|
||||
// As of 5/8/2012 this will yield incorrect results for mobile Safari, but there
|
||||
// isn't a whole lot we can do. See pull request at this URL for discussion:
|
||||
// https://github.com/jquery/jquery/pull/764
|
||||
return elem.document.documentElement[ "client" + name ];
|
||||
|
|
|
|||
|
|
@ -901,7 +901,7 @@ window.Modernizr = (function( window, document, undefined ) {
|
|||
// Safari 2-4 allows the smiley as a value, despite making a slider
|
||||
bool = defaultView.getComputedStyle &&
|
||||
defaultView.getComputedStyle(inputElem, null).WebkitAppearance !== 'textfield' &&
|
||||
// Mobile android web browser has false positive, so must
|
||||
// mobile android web browser has false positive, so must
|
||||
// check the height to see if the widget is actually there.
|
||||
(inputElem.offsetHeight !== 0);
|
||||
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@
|
|||
"family_replacement":null},
|
||||
{"pattern":"(IEMobile) (\\d+)\\.(\\d+)",
|
||||
"v1_replacement":null,
|
||||
"family_replacement":"IE Mobile"},
|
||||
"family_replacement":"IE mobile"},
|
||||
{"pattern":"(Firefox)/(\\d+)\\.(\\d+)\\.(\\d+)",
|
||||
"v1_replacement":null,
|
||||
"family_replacement":null},
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
"family_replacement":null},
|
||||
{"pattern":"(Opera)/(\\d+)\\.(\\d+).*Opera Mobi",
|
||||
"v1_replacement":null,
|
||||
"family_replacement":"Opera Mobile"},
|
||||
"family_replacement":"Opera mobile"},
|
||||
{"pattern":"(POLARIS)/(\\d+)\\.(\\d+)",
|
||||
"v1_replacement":null,
|
||||
"family_replacement":"Polaris"},
|
||||
|
|
|
|||
|
|
@ -1306,7 +1306,7 @@ var initSlider = function (container,opt) {
|
|||
opt.c=container;
|
||||
opt.ul = container.find('.tp-revslider-mainul');
|
||||
|
||||
// Remove Not Needed Slides for Mobile Devices
|
||||
// Remove Not Needed Slides for mobile Devices
|
||||
opt.ul.find('>li').each(function(i) {
|
||||
var li = jQuery(this);
|
||||
if (li.data('hideslideonmobile')=="on" && _ISM) li.remove();
|
||||
|
|
|
|||
|
|
@ -2313,7 +2313,7 @@ CodeMirror.overlayMode = function(base, overlay, combine) {
|
|||
var te = this.textarea = div.firstChild;
|
||||
display.wrapper.insertBefore(div, display.wrapper.firstChild);
|
||||
|
||||
// Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore)
|
||||
// Needed to hide big blue blinking cursor on mobile Safari (doesn't seem to work in iOS 8 anymore)
|
||||
if (ios) te.style.width = "0px";
|
||||
|
||||
on(te, "input", function() {
|
||||
|
|
@ -9349,7 +9349,7 @@ CodeMirror.overlayMode = function(base, overlay, combine) {
|
|||
function lst(arr) { return arr[arr.length-1]; }
|
||||
|
||||
var selectInput = function(node) { node.select(); };
|
||||
if (ios) // Mobile Safari apparently has a bug where select() is broken.
|
||||
if (ios) // mobile Safari apparently has a bug where select() is broken.
|
||||
selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; };
|
||||
else if (ie) // Suppress mysterious IE10 errors
|
||||
selectInput = function(node) { try { node.select(); } catch(_e) {} };
|
||||
|
|
|
|||
|
|
@ -2311,7 +2311,7 @@ CodeMirror.overlayMode = function(base, overlay, combine) {
|
|||
var te = this.textarea = div.firstChild;
|
||||
display.wrapper.insertBefore(div, display.wrapper.firstChild);
|
||||
|
||||
// Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore)
|
||||
// Needed to hide big blue blinking cursor on mobile Safari (doesn't seem to work in iOS 8 anymore)
|
||||
if (ios) te.style.width = "0px";
|
||||
|
||||
on(te, "input", function() {
|
||||
|
|
@ -9347,7 +9347,7 @@ CodeMirror.overlayMode = function(base, overlay, combine) {
|
|||
function lst(arr) { return arr[arr.length-1]; }
|
||||
|
||||
var selectInput = function(node) { node.select(); };
|
||||
if (ios) // Mobile Safari apparently has a bug where select() is broken.
|
||||
if (ios) // mobile Safari apparently has a bug where select() is broken.
|
||||
selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; };
|
||||
else if (ie) // Suppress mysterious IE10 errors
|
||||
selectInput = function(node) { try { node.select(); } catch(_e) {} };
|
||||
|
|
|
|||
|
|
@ -100,4 +100,7 @@ return [
|
|||
'seatsTotal' => 'seats. Total cost',
|
||||
'yourSeats' => 'Your Seats',
|
||||
|
||||
//Chcekout page
|
||||
'checkout' => 'Checkout'
|
||||
|
||||
];
|
||||
|
|
@ -106,4 +106,7 @@ return [
|
|||
'schedule' => 'Расписание',
|
||||
'datePlay' => 'Дата проведения',
|
||||
'timePlay' => 'Время проведения',
|
||||
|
||||
//Chcekout page
|
||||
'checkout' => 'Checkout',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -107,4 +107,7 @@ return [
|
|||
'datePlay' => 'Geçirilýän senesi',
|
||||
'timePlay' => 'Geçirilýän wagty',
|
||||
|
||||
//Chcekout page
|
||||
'checkout' => 'Checkout',
|
||||
|
||||
];
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
<div class="col-3">
|
||||
@include('Bilettm.Partials.CinemaItem')
|
||||
</div>
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
<div class="col-3">
|
||||
@include('Bilettm.Partials.CinemaItem')
|
||||
</div>
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
<div class="col-3">
|
||||
@include('Bilettm.Partials.CinemaItem')
|
||||
</div>
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
<div class="col-3">
|
||||
@include('Bilettm.Partials.CinemaItem')
|
||||
</div>
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
<meta name="msapplication-config" content="{{ url("assets/images/touch/browserconfig.xml") }}">
|
||||
<meta name="application-name" content="Bilettm">
|
||||
<meta name="_token" content="{{ csrf_token() }}" />
|
||||
{{--Mobile browser theme colors--}}
|
||||
{{--mobile browser theme colors--}}
|
||||
<meta name="theme-color" content="#2E3254">
|
||||
<meta name="msapplication-navbutton-color" content="#2E3254">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="#2E3254">
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
<div class="col-3">
|
||||
@include('desktop.Partials.CinemaItem')
|
||||
</div>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<div class="col-3">
|
||||
@include('desktop.Partials.CinemaItem')
|
||||
</div>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<div class="col-3">
|
||||
@include('desktop.Partials.CinemaItem')
|
||||
</div>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<div class="col-3">
|
||||
@include('desktop.Partials.CinemaItem')
|
||||
</div>
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
@extends('Bilettm.Layouts.BilettmLayout')
|
||||
@extends('desktop.Layouts.BilettmLayout')
|
||||
@section('content')
|
||||
{{\DaveJamesMiller\Breadcrumbs\Facades\Breadcrumbs::render('category',$category)}}
|
||||
@include("Bilettm.Partials.FilterMenu")
|
||||
@include("desktop.Partials.FilterMenu")
|
||||
<section class="movie-items-group">
|
||||
<div class="container">
|
||||
<div class="row kinoteator tab-part">
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
<div class="container">
|
||||
<div class="row">
|
||||
@foreach($events as $event)
|
||||
@include("Bilettm.EventsList.{$category->view_type}")
|
||||
@include("desktop{$category->view_type}")
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -33,15 +33,15 @@
|
|||
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content" style="padding: 50px 70px">
|
||||
@include('Bilettm.Public.AddEventForm')
|
||||
@include('desktop.Public.AddEventForm')
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<main>
|
||||
@include('Bilettm.Partials.PublicHeader')
|
||||
@include('desktop.Partials.PublicHeader')
|
||||
@yield('content')
|
||||
@stack('after_content')
|
||||
@include('Bilettm.Partials.PublicFooter')
|
||||
@include('desktop.Partials.PublicFooter')
|
||||
</main>
|
||||
<!-- JS Global Compulsory -->
|
||||
<script src="{{asset('assets/javascript/jquery/jquery.min.js')}}"></script>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue