List of commits:
Subject Hash Author Date (UTC)
Added download button b2778c1c6ed5e42de7bac6ae9223facf33469b8e EyadMohammedOsama 2019-08-08 22:17:29
Initial Commit 31265bb888791eb58829bdf07222d319a3387629 EyadMohammedOsama 2019-08-08 22:17:19
Added router for downloads 700b80e06b8b1809135fe32c0072beb7542570c6 EyadMohammedOsama 2019-08-08 22:17:08
Fiddle favoriting event implementation 5ea13953d8fdd949d122ff3d63bc427d2ac78a43 EyadMohammedOsama 2019-08-07 23:21:04
Added a trigger to fiddle favoriting 435bb1aacd90b540e822b68858a665955e7b6f35 EyadMohammedOsama 2019-08-07 23:20:20
Added Pusher.js ca81b2a591c04e678e415c3fdf10a41a3a11ac62 EyadMohammedOsama 2019-08-07 23:18:08
Configured broadcasting 61ad3285cfc37dfb4265874cf7b3496992846f7e EyadMohammedOsama 2019-08-07 23:17:36
Installed PHP Pusher 85bd7fa0401d69eff36ea21fa6bb60f28601ac14 EyadMohammedOsama 2019-08-07 23:16:31
Initial commit 4a865759d403eda3854c69005a3cfdbd7d737096 EyadMohammedOsama 2019-08-05 21:13:21
Added several new routes 85e08b7120e6ba249f3ecd523234c72f5c19c1cc EyadMohammedOsama 2019-08-05 21:12:53
Added several new routes ba3fca128d64c47fa0e9c8c08fd5e0a6635b08ae EyadMohammedOsama 2019-08-04 23:15:44
Configured sessions table 749fa85c728ab023aee73bff8f08677063edc70a EyadMohammedOsama 2019-08-04 23:15:19
Added a file system to store avatars e260a81485424f72c8a5154a91d5f7c83e180af5 EyadMohammedOsama 2019-08-04 23:15:00
Added new validation rules 42c291c0cbc2181e1fd9cf87991fded5550512cf EyadMohammedOsama 2019-08-04 23:14:36
Added new controllers c7a9229044be1d910911b89a6a049c0e0b4bd3a9 EyadMohammedOsama 2019-08-04 23:14:08
Added new helper file d4d3fd48a15af64a3abaffee411ecf542670be9b EyadMohammedOsama 2019-08-04 23:13:20
Added new models 0af667e894277c7a08499ac0bb2a82650485ccb9 EyadMohammedOsama 2019-08-04 23:13:03
Added new views e4ba7fc0daf2c8a9200a76e8d122ea52a9e56972 EyadMohammedOsama 2019-08-04 23:12:09
Added a helper file 86cd8e39ae94a78b3caa4e5eedea0f465c5716dd EyadMohammedOsama 2019-08-04 23:11:00
Deleted some files 9c2486581af5e537a7f9ffa64b2b02e8c9d5f42e EyadMohammedOsama 2019-08-02 23:30:55
Commit b2778c1c6ed5e42de7bac6ae9223facf33469b8e - Added download button
Author: EyadMohammedOsama
Author date (UTC): 2019-08-08 22:17
Committer name: EyadMohammedOsama
Committer date (UTC): 2019-08-08 22:17
Parent(s): 31265bb888791eb58829bdf07222d319a3387629
Signing key:
Tree: de7c760641c46ea243f6b4e9c8f0ae6d51fa19de
File Lines added Lines deleted
resources/views/Fiddle.blade.php 22 0
File resources/views/Fiddle.blade.php changed (mode: 100644) (index d575b5b..ea7cf7a)
66 66 <button class="btn btn-dark btn-block mt-2" id="report-fiddle">Report <span class="fa fa-exclamation-triangle"></span></button> <button class="btn btn-dark btn-block mt-2" id="report-fiddle">Report <span class="fa fa-exclamation-triangle"></span></button>
67 67 @endif @endif
68 68
69 <button class="btn btn-dark btn-block mt-2" id="download-fiddle">Download <span class="fa fa-download"></span></button>
70
69 71 <div id="message" class="w-100 text-center mt-2"></div> <div id="message" class="w-100 text-center mt-2"></div>
70 72 <div class="h-25">&nbsp;</div> <div class="h-25">&nbsp;</div>
71 73 </div> </div>
 
133 135 $("#result").attr("srcdoc", editor.session.getValue()); $("#result").attr("srcdoc", editor.session.getValue());
134 136 }); });
135 137
138 $("#download-fiddle").on("click", function() {
139 window.open("{{ URL::to('/download-fiddle') }}/" + window.ID) ;
140 /*
141 $.ajax({
142 type : "POST",
143 url : "{{ URL::to('/download-fiddle') }}",
144 data : {
145 "_token" : window.CSRFHashToken,
146 "ID" : window.ID
147 },
148 success : function(data) {
149 alert(JSON.stringify(data));
150 },
151 error : function(xhr) {
152 alert(xhr.responseText)
153 }
154 });
155 */
156 });
157
136 158 $(window).bind("keydown", function(e) { $(window).bind("keydown", function(e) {
137 159 if (e.which === 116) { if (e.which === 116) {
138 160 e.preventDefault(); e.preventDefault();
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/EyadMohammedOsama/sicsf

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/EyadMohammedOsama/sicsf

Clone this repository using git:
git clone git://git.rocketgit.com/user/EyadMohammedOsama/sicsf

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main