This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| create database databasename; | |
| create user 'user' identified by 'password'; | |
| grant all privileges on databasename.* to 'user'@localhost identified by 'password'; | |
| grant all privileges on databasename.* to 'user'@host; | |
| grant all privileges on databasename.* to 'user'@%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #element:after, .element:after { | |
| content: ""; | |
| display: block; | |
| height: 0; | |
| clear: both; | |
| visibility: hidden; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function progressHandler(event){ | |
| $("#kb_of_total").text("Uploaded "+Math.round(event.loaded/1024) +" kb of "+Math.round(event.total/1024)); | |
| var percent = (event.loaded / event.total) * 100; | |
| $("#progressBar").attr('value', Math.round(percent)); | |
| $("#status").text(Math.round(percent)+"% uploaded... please wait"); | |
| } | |
| function completeHandler(event){ | |
| $("#progressBar").attr('value', 100); | |
| $("#status").text('Uploaded Success'); | |
| successHandler(event); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;(function ( $ ) { | |
| 'use strict'; | |
| $(document).ready(function() { | |
| $('form').bind('submit', function() { | |
| $(this).find('button[type="submit"] i').attr('class', 'glyphicon glyphicon-refresh animate'); | |
| }); | |
| }); | |
| })( jQuery ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WebApp |
NewerOlder