Visit https://github.com/usablica/progress.js for more info
- load css and js
<html>
<head>
... load css and js
</head>
<script>
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
//CSS | |
// in app/Http/Controllers/Auth/LoginController.php | |
<?php | |
/* | |
* code ... | |
*/ | |
use AuthenticatesUsers; | |
protected function credentials(Request $request) |
Visit https://github.com/usablica/progress.js for more info
<html>
<head>
... load css and js
</head>
<script>
SELECT
SUM(column) AS Top_Scores, user_id, COUNT(rating) as number_of_times
FROM Table
GROUP BY user_id
ORDER BY SUM(column) DESC LIMIT 100
• in facebook login -> Settings : Valid OAuth Redirect URIs : https://localhost/ProjectFolder/public/login/facebook/callback
• in settings -> Basic : App domain : App Domains
• in settings -> Basic -> Website ( bottom of the page )
<?php | |
/// Translate the value ... not the key | |
/// Example : 'Title' => "your text here" | |
/// Thanks ♥ | |
return [ | |
'Title' => "Welcome To 10Stars", | |
'Description' => "Find out your rating, or rate someone you know.", | |
'Create_Account' => 'Create Account', | |
'Sign_in' => 'Sign in', |
$ ionic cordova plugin add cordova-plugin-screen-orientation
$ npm install --save @ionic-native/screen-orientation
When addressing images from your .ts files, use ../assets relative path because we have to get out of the build directory first. When addressing the image from your .html files, use assets relative path, because in the final apk file all htmls are merged into one single file called index.html which is placed next to the assets directory and there is no need to go up one level before reaching assets.
/* Blue Theme by AdemKouki */ | |
@import url('https://fonts.googleapis.com/css?family=Cairo'); | |
.theme--day .header-bar { | |
background-color: #084bf3; | |
} | |
.header-avatar, .info , .menu, #share_button{ | |
display: none; |